$('#baba').prop('selectedIndex',0);
$('#mySelect')
.find('option')
.remove()
.end()
.append('<option value="whatever">text</option>')
.val('whatever')
;
$('select').each( function() {
$(this).val( $(this).find("option[selected]").val() );
});
$('ClassOrIDName').prop('selectedIndex',0);
// this works perfectly. just put this in any action and your 1st option should be 'select one item' type