Get selected text from a drop-down list (select box) using jQuery
Solution 1:
$("#yourdropdownid option:selected").text();
Solution 2:
Try this:
$("#myselect :selected").text();
For an ASP.NET dropdown you can use the following selector:
$("[id*='MyDropDownId'] :selected")