The following code works:
$(\"#select-id\").change(function(){ var cur_value = $(\'#select-id option:selected\').text(); . . . });
How
$(this).find('option:selected').text();