        function changeAction() {
        	var selectedValue = document.searchform.selectdm.options[document.searchform.selectdm.selectedIndex].value;
        	var theForm = document.searchform;
     switch (selectedValue){
       case "com" :
            theForm.setAttribute("action", "http://www.abebooks.com/servlet/SearchResults")
            break;
       case "uk" :
            theForm.setAttribute("action", "http://www.abebooks.co.uk/servlet/SearchResults")
            break;
       case "es" :
         theForm.setAttribute("action", "http://www.iberlibro.com/servlet/SearchResults")

         break;
      case "de" :
           theForm.setAttribute("action", "http://www.abebooks.de/servlet/SearchResults")
           break;
      case "fr" :
          theForm.setAttribute("action", "http://www.abebooks.fr/servlet/SearchResults")
          break;
       case "it" :
         theForm.setAttribute("action", "http://www.abebooks.it/servlet/SearchResults")
         break;

      default :
        theForm.setAttribute("action", "http://www.abebooks.com/servlet/SearchResults")
      }

        }
