I want to fetch custom post data based on it’s id i fetch from select drop down [closed]

I think this should work for you:

<?php 
    $posts = get_posts( array(
        'post_type'      => 'postname',
        'posts_per_page' => '1000'
    ) );
?>
<select class="form-control" id="selectid" name="selectid" > 
    <?php foreach( $posts as $post ) : ?>
        <option value="<?php esc_attr_e( $post->ID ); ?>"><?php esc_html_e( $post->post_title ); ?></option>
    <?php endforeach; ?>                                         
</select>
<!-- Post info -->
<div id="post_info">
</div>

And the javascript part (you will need to enqueue a script dependent on ‘jquery’, or use another library that supports ajax).

/* script.js, requires jQuery */
;(function($) {
    $(document).ready(function() {
        var postInfoElement = $("#post_info");
        $("#selectid").change(function() {
            var postId = $(this).val();
            $.ajax({
                type: "POST",
                data: "action=get_sigle_post&post_id=" + postId,
                url:  "/wp-admin/admin-ajax.php", // Careful with this, use 'wp_localize_script' along with the script enqueue method instead.
                success: function(response) {
                    if (!response.success) {
                        // Something went wrong, response.data should contain an error message
                        return false;
                    }
                    var post = response.data;
                    // Do whatever you need to do with "post" and "postInfoElement" variables
                }
            });
        });
    });
})(jQuery);

And finally you will need an ajax handler

// Define this somewhere within your plugin or theme's functions file.
add_action( 'wp_ajax_get_sigle_post', 'my_func_get_sigle_post' );
add_action( 'wp_ajax_nopriv_get_sigle_post', 'my_func_get_sigle_post' ); // For non-logged in users

function my_func_get_sigle_post() {
    $post_id = isset( $_POST['post_id'] ) ? ( int ) $_POST['post_id'] : 0;
    if ( ! $post_id ) wp_send_json_error( 'Invalid post id' );
    $post = get_post( $post_id );
    if ( ! $post ) wp_send_json_error( 'Could not retrieve the requested post' );
    // Add or remove $post's attributes here

    // Send the ajax response
    wp_send_json_success( $post );
}

Don’t forget to use a nonce to enhance security.