I want set a dropdown(select) to be change based on the value of the entries.
I have
Plea
$('#yourdropddownid').val('fg');
Optionally,
$('select>option:eq(3)').attr('selected', true);
where 3 is the index of the option you want.
3
Live Demo