Get selected text from a drop-down list (select box) using jQuery
How can I get a drop-down list selected text in jQuery, not using the selected value?
Answer:
$("#yourdropdownid option:selected").text();
http://stackoverflow.com/questions/1643227/get-selected-text-from-a-drop-down-list-select-box-using-jquery
COMMENTS