you need to specify a method and action for your form:
<form method="post" action="form_handler.php">
you need to give names to your selects:
<select name="bitrate">
then you should assign value attributes to your options:
<option value="1">128kbps</option>
<option value="2">192kbps</option>
then in form_handler.php, you can check the value:
echo $_POST['bitrate'];
You should also probably do some tutorials. This is pretty basic stuff.