jquery dropbox get text by value code example
Example 1: get text selected option jquery
$('#id option:selected').text()
Example 2: jquery selected option text
$("#mySelect option:selected").html();
Example 3: get text in select jquery
$("#id option:selected").text();