selected options jquery code example
Example 1: jquery selected option
$( "#myselect option:selected" ).val();
Example 2: $(this) option selected jquery
var cur_value = $('option:selected',this).text();
$( "#myselect option:selected" ).val();
var cur_value = $('option:selected',this).text();