select jquery get html text code example
Example 1: get text of selected option jquery
$('#id').children(':selected').text();
Example 2: jquery selected option text
$("#mySelect option:selected").html();
$('#id').children(':selected').text();
$("#mySelect option:selected").html();