var spec1=new Array();var spec1a=new Array();var spec6=new Array();var spec6a=new Array();spec6a[0]='1';spec6[0]='Apartment';spec6a[1]='2';spec6[1]='Villa';spec6a[2]='3';spec6[2]='Townhouse';spec6a[3]='4';spec6[3]='Studio';spec6a[4]='5';spec6[4]='Bed & Breakfast';spec6a[5]='6';spec6[5]='Cottage';spec6a[6]='7';spec6[6]='Duplex';spec6a[7]='8';spec6[7]='Guest House';spec6a[8]='9';spec6[8]='Hotel';spec6a[9]='10';spec6[9]='Ski/Chalet';spec6a[10]='11';spec6[10]='Golf Resort';spec6a[11]='12';spec6[11]='Off - plan';spec6a[12]='13';spec6[12]='Key ready';spec6a[13]='14';spec6[13]='Re - sale';
function change_drop(value){
	document.getElementById('typeofproperties').length=0;document.getElementById('typeofproperties').options[0] = new Option('All', '', 0, 0);
	if (value==0){
		for (var i=0; i < spec1.length; i++) {
			document.getElementById('typeofproperties').options[i] = new Option(spec1[i], spec1a[i], 0, 0);document.getElementById('typeofproperties').options[0].selected =  true;}
	}
	if (value==1){
		for (var i=0; i < spec6.length; i++) { document.getElementById('typeofproperties').options[i] = new Option(spec6[i], spec6a[i], 0, 0);document.getElementById('typeofproperties').options[0].selected =  true;}
	}
}