Voy a ver si encuentro algo, no conozco mucho del tema... Buscá información sobre "focus" creo que tiene algo que ver...
 
Encontré este ejemplo...  
 Código HTML:
 <form method="GET" name="MySearchForm" action="search.php">
<input type="text" name="zoom_query" size="15">
<input type="submit" value="Search" name="Button1">
</form>
Then you could use Javascript like this to set the position of the cursor (the focus) by adding an onLoad attribute to the <BODY ...> tag.
<BODY onLoad="document.forms.MySearchForm.zoom_query.focus()"> 
 
*** 
Sino lo otro podría ser enviar el formulario sin necesidad de un refresh...  
http://net.tutsplus.com/javascript-a...-using-jquery/