 function CheckSelector (theForm)
 {
  var errmsg = "The following error(s) occured while trying to process the form:\n";
  errmsg += "__________________________________________________\n\n";
  var passed = true;
   if (theForm.country.value.length == 0) 
   { 
    passed = false;
    errmsg += "You didn't select where are you calling to.\n";
   }
		
   if (passed == false) {alert (errmsg) }
   return(passed); 
 }
 
 function ChangeRate(rate, country)
 {
 	document.getElementById(rate).innerHTML = document.getElementById(country).value;
 }

