Non e` il valore. Il value e` "1", mentre il text e` "Mario"

var ss = document.NOMEFORM.NOMESELECT;
var val = ss.options[ss.selectedIndex].value;
var txt = ss.options[ss.selectedIndex].text;


Una nota sulla sintassi:
<option value="1" selected="selected">mario</option>