get all option text from select jquery code example
Example 1: get selected option text jquery
$("#id option:selected").text();
Example 2: jquery selected option text
$( "#myselect option:selected" ).text();
$("#id option:selected").text();
$( "#myselect option:selected" ).text();