选定的选项未显示在下拉列表的顶部

I have a dropdown that is populated from all the titles in the database table seminars. I want the first option to be the option that is selected in the featured table using the seminarsID. The "Top Feature" shows the first option properly. The "2nd Feature" is blank when you see the drop down box, but when you click to see all the options the first option is the correct one from the featured table.

Here's the code:

<div class='formInput'>Top Feature: <select name='seminarID1' id='seminarID1'>
<?php
    $myquery = mysql_query("
        SELECT id, title
        FROM seminars
        WHERE id in 
        (SELECT seminarsID from featured WHERE ID = 1)
    ");

    while($get_row = mysql_fetch_assoc($myquery)){?>
        <option value='<?php echo $get_row['id']?>'><?php echo $get_row['title'];
    ?></option><?php }

    $rs = mysql_query("
        SELECT id, title 
        FROM seminars
        WHERE Active = 'Active'
        order by title
    ");

    while($get_row = mysql_fetch_assoc($rs))
        echo "<option value='{$get_row['id']}'>{$get_row['title']}</option>";
?>
</select></div>

<div class='formInput'>2nd Feature: <select name='seminarID2' id='seminarID2'>
<?php
    $myquery = mysql_query("
        SELECT id, title
        FROM seminars
        WHERE id in
        (SELECT seminarsID from featured WHERE ID = 2)
    ");

    while($get_row = mysql_fetch_assoc($myquery)){?>
        <option value='<?php echo $get_row['id']?>'><?php echo $get_row['title'];
    ?></option><?php }

    $rs = mysql_query("
        SELECT id, title
        FROM seminars
        WHERE Active = 'Active'
        order by title
    ");

    while($get_row = mysql_fetch_assoc($rs))
        echo "<option value='{$get_row['id']}'>{$get_row['title']}</option>";

?>
 </select></div>