Change your form to something like this. Do not name each option in the select box.
<form action="vote.php" method="post
<select name="select">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
....................................
</select>
<input type="submit" value="GO">
</form>
This will produce a post that looks like this...
vote.php?select=1
... or whatever option the user selects.