function mimetizar(seccion, id)
{
	$.get("/mimetizar/"+seccion+"/"+id, function(nom) {
		$("#"+id).attr("name", nom);
	});
		
}
