function div(){
  document.getElementById('City').value='ALL';		
}
function country(){
  document.getElementById('Division').value='ALL';		
  document.getElementById('City').value='ALL';		
}
function city(){
  if (document.getElementById('City').value != 'ALL' ){
    document.getElementById('Country').value='ALL';		
    document.getElementById('Division').value='ALL';		
  }
}
