<!DOCTYPE html>
<html>
<body>
<select size="3" multiple>
<option>a</option>
<option selected>b</option>
<option id="c">c</option>
</select>
<script>
function go() {
document.querySelector('select').focus();
document.querySelector('select').selectedIndex = 2;
}
</script>
</body>
</html>