Pilih pemicu mouseleave

$('#Something').mouseleave(function(){
  if (event.target.tagName == 'SELECT' ) return;
  // your things  
});
Cute Capuchin