How can I get the selected text (not the selected value) from a drop-down list in jQuery?
Simply try the following code.
var text= $('#yourslectbox').find(":selected").text();
it returns the text of the selected option.