The following code works:
$(\"#select-id\").change(function(){ var cur_value = $(\'#select-id option:selected\').text(); . . . });
How
For the selected value: $(this).val()
$(this).val()
If you need the selected option element, $("option:selected", this)
$("option:selected", this)