
 	var numbers = new Array();  
		        
		numbers[0] = "228";//Number of Cities
		numbers[1] = "535";//Number of Branches
		numbers[2] = "1200";//Number of ATM's
		
	 function City()
		 {
			document.write(numbers[0])
		 }
	 
	 function Branches()
		 {
			document.write(numbers[1])
		 }
	 
	 function atms()
		 {
			document.write(numbers[2])
		 }
		 
	function chkcity()
		{
			if (document.form1.city.options[document.form1.city.selectedIndex].value=="")
				{
					alert("Please select the city")
					return false
				}
		}
		
	function chkbank()
		{
			if (document.form1.branchname.options[document.form1.branchname.selectedIndex].value=="")
				{
					alert("Please select a bank")
					return false
				}
		}	
