is this what you mean?
form:
<input type="text" name="mytext">
<select name="myselect">
<option value="one">one
<option value="two">two
</select>
// other form data
php:
// this will print the values for you
echo "value text = $text<br>";
echo "value select = $select";
// so just insert the select with $select