wordpress custom form
A last option is to write a custom function (in your functions.php file) and hook that function to the get_search_form action hook.
function sanofi_search_form( $form ) {
$form = '<form role="search" method="get" />
</div>
</form>';
return $form;
}
http://codex.wordpress.org/Function_Reference/get_search_form