In order to remove search box from header, you should override nav_user_search() function.
function nav_user_search() // remove search from here
{
//$this->search(); - remove search from here
$this->nav('user');
}
In order to put search form somewhere else, you just put search() into appropriate function.