// funciones necesarias
function enviarForm(f){
	var variables = Object.toQueryString({fuseaction: 'addEmail', mail: f.email.value, lang: f.lang.value}); //me construye lo que colocaré en post
	var oAjax = new Ajax('ajax_form.php', {postBody: variables, update: 'altaNewsletter'});
	oAjax.request();	
}
//actualiza el div en cuestión
function actualizar(r){
	alert("ostras "+r.responseText);
}
