jquery text select code example
Example 1: jquery selected option text
$("#mySelect option:selected").html();
Example 2: jquery selected option text
$( "#myselect option:selected" ).text();
$("#mySelect option:selected").html();
$( "#myselect option:selected" ).text();