﻿// JScript File


//Create By: Amit Kumar
  //Purpose : To referesh value of DropDown
  function RefreshCountryDropDown(dropDownID,stringValue)
  {
    document.getElementById(dropDownID).value=stringValue;
    return true;
  }