Construct the combobox via PHP, and check to see if you need to output the HTML to make an option selected. Example:
$user_choice = 'brad';
// fake value; this would be the submitted option's value
$options = array('john' => 'John Doe', 'jane' => 'Jane Doe', 'brad' => 'BradG');
// list of options for creating dropdown box
echo '<select name="foo">
<option value=""> </option>';
foreach($options as $value => $name)
echo "<option value=\"$value\"" . ($value == $user_choice ? " selected=\"selected\"" : '') . ">$name</option>\n";