function opchk() {
var val = document.getElementById("ops").value;
document.getElementById("f9").innerHTML = val;
}
this will print out op1 or op2... i dont want to change the values of them and print the showing text, is that possible?
<select style="width:90px" id="ops" onblur="opchk()">
<option value="op1">Select size</option>
<option value="op2">5</option>
<option value="op3">10</option>
<option value="op4">15</option>
<option value="op5">20</option>
</select>