To do this, you will need a little EMCAScript.
<label for="name3">
<input type="checkbox" id="name3activaitor" onclick="if(this.checked){ document.getElementById('name3').focus();}" />
Other...
</label>
<input type="text" id="name3" name="name3" />
The built-in handler sees whether the checkbox has been checked, and if it is, focuses text input. I put a checkbox in a label just to symbolically group it with a label, since it performs the same function, but you can put the flag anywhere.
/ , , :
<input type="checkbox" onclick="var input = document.getElementById('name2'); if(this.checked){ input.disabled = false; input.focus();}else{input.disabled=true;}" />Other...
<input id="name2" name="name2" disabled="disabled"/>