So I have a select feild with various options, the default is an option prompting the user to select from the drop down with a value of "empty". If the user declines to change the drop down before submission, rather than sending a string containing "empty" the form changes the feild to the top option within the select and sends that data instead. My code is included below:
<select class="num" name="Team_1">
<option value="empty" class="red">Please Select</option>
<option value="1">Manchester United</option>
<option value="2">Bristol City</option>
<option value="4">Spurs</option>
<option value="9">Testing</option>
</select>
If you submit the above form with the Please select option chosen, it reverts ti Manchester United and sends a string containing "1"
Any ideas why it might be doing this and/or how i can stop it?