Take following:
<select id="test">
<option value="1">Test One</option>
<option value="2">Test Two</option>
</select>
How do I get to "Test One" and "Test Two" using javascript
document.getElementsById('test').selectedValue returns 1 or 2, what propery return actual name of selected option ?
Thanks for help!