I have a select tag:
value 1
$("select").scrollTop($("select").find("option[value=4]").offset().top);
Just set the appropriate selectors for select element and values inside
Or you can just use focus().
$("select").find("option[value=4]").focus(); $('select option[value="banana"]').focus();