I have a HTML select list, which can have multiple selects:
Set a onClick on the option instead of the select:
$('#mySelect option').click(function() { if ($(this).attr('selected')) { alert($(this).val()); } });