how to grab the text value from a drop down in jquery code example
Example 1: jquery selected option text
$("#mySelect option:selected").html();
Example 2: get text in select jquery
$("#id option:selected").text();
$("#mySelect option:selected").html();
$("#id option:selected").text();