codice:
var idx = document.getElementById('test01')selectedIndex;
var val =  document.getElementById('test01').options[idx].value;
per recuperare il valore della selezione corrente oppure

codice:
document.getElementById('test01').options[0].value;
per la prima option

Ciao