What you are looking for is onFocus like this:
$("#mySelect").on("focus", function(){});
This fires when select is clicked before any option was chosen.