// JavaScript Document
function chk(v) {
	 if(v==0) {
       alert("Please select any country.");
	   document.frm.country_id.focus();
	   return false;
     }
	 if(v==225) {
	  window.location='exide_usa.php';
	  return true;
	 }
	 else {
	   window.location='exide_others.php';
	   return true;
	  }
  }
	   
