prueba.html Código HTML:
<form method="post" action="prueba.php">
<select name="seleccion">
<option value="santiago">Santiago</option>
<option value="troll">Soy un troll</option>
</select>
<input type="submit" value="Enviar">
</form>
prueba.php Código PHP:
<?php
$opcion_elegida = $_POST['seleccion'];
switch($opcion_elegida){
case 'santiago':
echo 'Has elegido santiago';
break;
case 'troll':
echo 'Has elegido ser un troll';
break;
default:
echo 'No has seleccionado nada...';
}
?>
¿Con eso te vale?