<select name=combobox1>
<option value=1>This is item 1</option>
<option value=2>This is item 2</option>
<option value=3 selected>This is item 3</option>
</select>
That is the HTML for a combo box with item #3 selected. It's very simple to choose the selected option. If you are generating your HTLM in code then you just need to use the posted value to set the correct option to being selected. And I'd suggest you place it as a hidden value on your form for the second combo box so that your code can have both be selected properly when your user is working on the 3rd combo box.