<select id="testSelection">
<option> test1 </option>
<option> test2 </option>
<option> test3 </option>
<option> test4 </option> <--- selected this one from the pull down menu
<option> test5 </option>
<option> test6 </option>
</select>
$("#testSelection").change(function()
{
alert($(this).text());
});
Strange to me, the alert message shows all the selections but I was expecting it to show on only test4 text.