I need a function that will compare two values from two drop-down selectors and if they are the same show a div. I'd like to use jQuery, if possible.
<select id="drop1">
<option value="a">a
<option value="b">b
<option value="c">c
</select>
<select id="drop2">
<option value="a">a
<option value="b">b
<option value="c">c
</select>