function cambiaweb(){
    if (document.f.pais.value == "portugal") {
        document.location.href="http://www.masterd.pt";
    } else if (document.f.pais.value == "grecia") {
        document.location.href="http://www.masterd.gr";
    } else if (document.f.pais.value == "brasil") {
        document.location.href="http://www.masterd.com.br";
    } else if (document.f.pais.value == "china") {
        document.location.href="http://www.masterd.cn";
    } else{
        document.location.href="http://www.masterd.es";
    }
}