I have a simple html select tag with some options attached:
<select>
<option>school a</option>
<option>school b</option>
<option>school c</option>
</select>
I'd like to attach some simple event handlers to the options the same way I would to say... a link:
<option onclick="scheduleA();">school a</option>
Do I need to construct a separate Javascript function to deal with event handling in this situation or is there some quick html that will accomplish this task?