
function sendRequest() {
jQuery.ajax({
  type: "post",
  url: "/wp-content/themes/rexona/incs/ajax.php",
  data: "name="+document.formland.land.value,
  context: document.body,
  success: function(data){

    jQuery('#link1').attr('href','http://www.rexona-women.'+document.formland.land.value);
    jQuery('#link2').attr('href','http://www.rexona-men.'+document.formland.land.value);
    jQuery('#link3').attr('href','http://www.rexona-girl.'+document.formland.land.value);
    jQuery('#rex-women').html("www.rexona-women."+document.formland.land.value);
    jQuery('#rex-men').html("www.rexona-men."+document.formland.land.value);
    jQuery('#rex-girl').html("www.rexona-girl."+document.formland.land.value);

  }
});
 

}
