I need JavaScript to call different functions on different select options. E.g.
<select name="city">
<option value="1" onselect="function_one()">One</option>
<option value="2" onselect="function_two()">Two</option>
<option value="3" onselect="function_three()">Three</option>
<option value="4" onselect="function_four()">Four</option>
</select>
you should do that like this because onclick and onselect attributes are not supported for option tag.
DEMO