Here it is:
<select id="test" onchange="alert(this.selectedIndex); this.selectedIndex = 0">
<option>test1</option>
<option>test2</option>
<option>test3</option>
</select>
Works perfectly fine in all browsers. It worked fine on iOS5. It does not work in iOS6. It does show the alert screen but it seems to ignore the second portion to reset the index. Oddly enough, changing onchange to onblur makes it work on iOS6 Safari but breaks every other browser.
So, is this an iOS bug or what? Any help is appreciated.