How can I get the selected text (not the selected value) from a drop-down list in jQuery?
For multi-selects:
$("#yourdropdownid :selected").map(function(i, v) { return $.trim($(v).text()); }