var city_area_code= new Array();

city_area_code['']='';
city_area_code['dubai']='04';
city_area_code['abu dhabi']='02';
city_area_code['al ain']='03';
city_area_code['ajman']='06';
city_area_code['fujairah']='09';
city_area_code['sharjah']='06';
city_area_code['ras al khaimah']='07';
city_area_code['umm al-quwain']='06';

function get_city_area_code (city_var){
			
	
		if(city_area_code[city_var.value]==null){
			
			document.getElementById('TPL_phone2').value= '';
			document.getElementById('TPL_phone2').readOnly=false;
			
			document.getElementById('company_FAX2').value= '';
			document.getElementById('company_FAX2').readOnly=false;
			
			document.getElementById('company_TPL_phone2').value= '';
			document.getElementById('company_TPL_phone2').readOnly=false;
			
			return;
		}
		
		if(city_area_code[city_var.value]){
			
			document.getElementById('TPL_phone2').value= city_area_code[city_var.value];
			document.getElementById('TPL_phone2').readOnly=true;
			
			document.getElementById('company_FAX2').value= city_area_code[city_var.value];
			document.getElementById('company_FAX2').readOnly=true;
			
			document.getElementById('company_TPL_phone2').value= city_area_code[city_var.value];
			document.getElementById('company_TPL_phone2').readOnly=true;
			
			return;
		}
		
	
}

