<!DOCTYPE html>
<html>
<body>
<select size="3">
<option>Apple</option>
<option>Orange</option>
<option>Banana</option>
</select>
<script>
function go() {
document.querySelector('select').focus();
}
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<select size="3">
<option>Apple</option>
<option>Orange</option>
<option>Banana</option>
</select>
<script>
function go() {
document.querySelector('select').focus();
}
</script>
</body>
</html>