So I would like to have some text be displayed for each , say I had this:
<select id="321" name="123">
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
<option value="d">d</option>
</select>
<div id="help"></div>
How would I make the a
option display "A is the first letter of the alphabet!" in the help div with jquery? And similar for the rest.