﻿// JScript File


//Create By: Amit Kumar
  //Purpose : To referesh value of DropDown
  function RefreshCountryDropDown(dropDownID,stringValue)
  {
    document.getElementById(dropDownID).value=stringValue;
    return true;
  }
  
	function CountryCityDDL_onChange(ddl){
	    var url=ddl.value;
	    if(url!=0){
		    window.location=ddl.value;
		}
	}
