/**
     * Output HTML for a <select> dropdown menu of posts for a given post type
     *
     * @param 	string 	$post_type 		The post type for which we're displaying posts
     * @return 	null
     * @since 	1.0.0
     */
    public static function select_post_for_type($post_type, $section = '')
    {
        $args = array('post_type' => $post_type, 'posts_per_page' => -1, 'orderby' => 'post_title', 'order' => 'ASC');
        $posts = get_posts($args);
        $choices = array(array('value' => '', 'label' => '- Select -'));
        foreach ($posts as $post) {
            $choice = array('value' => $post->ID, 'label' => $post->post_title);
            $choices[] = $choice;
        }
        RO3_Options::do_settings_field(array('name' => 'post_id' . $section, 'type' => 'select', 'label' => '', 'data' => array('section' => $section), 'choices' => $choices, 'description' => '<b>Note:</b> Below, you have the option to alter the title, description, image, etc. for the post you choose.  Changes to the post do not auto update here.'));
        ?>
</div>
		<?php 
    }