Hola
Zyon!
te pongo aquí un pequeño ejemplo:
Código:
function Ver($obj_select){
window.alert($obj_select.options[$obj_select.selectedIndex].value);
}
Código HTML:
<select name="select" onchange="Ver(this)">
<option value="valor1">valor1</option>
<option value="valor2">valor2</option>
</select>
Un saludo!