$("#YOURselectID").val(); should work fine.
Also :selected will not work perfectly zeptoJS
You can also try this to get the text of the selected item.
$("#YOURselectID option["+$("#YOURselectID").val()+"]").html();
should work fine.
format $(ID option[value]).html();
source share