Remove the events from the options, use an event directly on the select instead.
function myfunc(value) {
alert(value);
}
...
<select onchange="myfunc(this.options[this.selectedIndex].value)">
<option value="1">Item1</option>
<option value="2">Item2</option>
</select>