function changeAction(id){
	if (id=="google") {

		document.getElementById('searchform').action="http://www.google.es/search";
		document.getElementById('stext').name="q";
	}
	else {
		document.getElementById('searchform').action="/wordpress/index.php";
		document.getElementById('stext').name="s";	
	}	
}

	