jQuery(document).ready( function()
{
	jQuery("div#regiones").change(function() 
    {
            jQuery.post( ajaxurl,
            {
				action: 'xprofile_cargar_comunas',
				id_region: jQuery("#selectregiones").val()
			},
			function(response)
			{
                response = response.substr(0, response.length-1);
				jQuery('div#comunas').replaceWith(response );
			});
		});
    }
);
