How can I get the selected text (not the selected value) from a drop-down list in jQuery?
For those who are using SharePoint lists and don't want to use the long generated id, this will work:
var e = $('select[title="IntenalFieldName"] option:selected').text();