One solution / option that is close but not viable is removing the value="" attribute so the option value is used in the $_POST
<select id="selectList">
<option>Bob</option>
<option>Jim</option>
</select>
Results in using Bob or Jim as the $_POST['selectList'] but the problem is the "value" as an integer is needed for an earlier upload on the page...