I have
select something something 1
Edit: Old fashioned way,
document.getElementById('baba').selectedIndex = 0;
Try below and it should work for your case,
$('#baba option:first').prop('selected', true);
DEMO