You can bind using .on() by giving id. In general, change is the event called upon .
So, there is no need to mention option while binding event.
$(document).on('change','#mySelect', function(){
console.log('hi!');
});
OR
$('#mySelect').bind('change',function(){
console.log('hi!');
});