How can I get the selected text (not the selected value) from a drop-down list in jQuery?
For getting selected value use
$('#dropDownId').val();
and for getting selected item text use this line:
$("#dropDownId option:selected").text();