Restablecer una opción de selección jQuery
$('#baba').prop('selectedIndex',0);
Beautiful Bug
$('#baba').prop('selectedIndex',0);
$('select').each( function() {
$(this).val( $(this).find("option[selected]").val() );
});