The following code works:
$(\"#select-id\").change(function(){ var cur_value = $(\'#select-id option:selected\').text(); . . . });
How
It's just
$(this).val();
I think jQuery is clever enough to know what you need