when clicking this select element, the inline call "onchange" should call a javascript function:
<select onchange="if (this.selectedIndex) do_something();">
<option value=1>1</option>
<option value=2>2</option>
</select>
basically how do i submit the option selected to 'do_something()' function? or in the function how can I obtain the option value selected?