F55 (Fail): Due to using script to remove focus when focus is received

HTML Snippet Code
Scenario 1: Focus moves automatically to submit button when select combo box receives focus
<label> Email <input type="text"> </label> <label> Select email notification <select id="optsel" onfocus="change();"> <option> -- Select -- </option> <option> Yes </option> <option> No </option> </select> </label> <input type="button" value="submit" id="btnsub"/> <script> function change() { document.getElementById('btnsub').focus(); } </script>