function getEstate(thisfield, state, firstText, firstValue){

	thisfield.options.length = 1;
	thisfield.options[0] = new Option(firstText, firstValue);

	if (state == 'qld'){
		thisfield.options[1] = new Option('Bellmere - Belle Air Gardens', 'BELLEAIR GARDENS');
		thisfield.options[2] = new Option('Coomera - EdgeWater', 'EDGEWATER');
		thisfield.options[3] = new Option('Coomera - RiverWood', 'RIVERWOOD');
		thisfield.options[4] = new Option('Coomera - SeaGreen', 'SEAGREEN');
		thisfield.options[5] = new Option('Holmview - Alberi Park', 'ALBERI PARK');
		thisfield.options[6] = new Option('Kelso - River Parks', 'RIVERPARKS');
		thisfield.options[7] = new Option('Ningi - Sandstone Lakes', 'SANDSTONE LAKES');
		thisfield.options[8] = new Option('Pimpama - Arcadia Woods', 'ARCADIA WOODS');
		thisfield.options[9] = new Option('Redbank Plains - Cedar View', 'CEDAR VIEW');
		thisfield.options[10] = new Option('Redbank Plains - Mountiew', 'MOUNTVIEW');
	}else if(state == 'vic'){
		thisfield.options[1] = new Option('Brookfield - Riverina', 'RIVERINA');
		thisfield.options[2] = new Option('Pakenham - Edenbrook', 'EDENBROOK');
		thisfield.options[3] = new Option('Pakenham - Fallingwater', 'FALLINGWATER');
		thisfield.options[4] = new Option('Tarneit - Moorookyle', 'MOOROOKYLE');
		thisfield.options[5] = new Option('Truganina - Arndell', 'ARNDELL');
	}else if(state == 'sa'){
		thisfield.options[1] = new Option('Aldinga Beach - Merlot Place', 'MERLOT PLACE');
		thisfield.options[2] = new Option('Andrews Farm - Lakeside', 'LAKESIDE');
		thisfield.options[3] = new Option('Burton - Sanctuary Gardens', 'SANCTUARY GARDENS');
		thisfield.options[4] = new Option('Christie Downs - Osmund Grove', 'OSMUND GROVE');
		thisfield.options[5] = new Option('Davoren Park -  Playford Mews', 'PLAYFORD MEWS');
		thisfield.options[6] = new Option('Evanston Gardens -  Springfield Waters', 'SPRINGFIELD WATERS');
		thisfield.options[7] = new Option('Greenock -  Greenock Rise', 'GREENOCK RISE');
		thisfield.options[8] = new Option('Mount Barker - The Summit', 'THE SUMMIT');
		thisfield.options[9] = new Option('Mount Compass - Compass Ridge', 'COMPASS RIDGE');
		thisfield.options[10] = new Option('Munno Para West - Oakwood', 'OAKWOOD,OAKWOOD ON ANDREWS,OAKWOOD ON PEERLESS');
		thisfield.options[11] = new Option('Normanville -  The Links', 'LINKS LADY BAY');
		thisfield.options[12] = new Option('Sellicks Beach -  Ocean View', 'OCEAN VIEW');
		thisfield.options[13] = new Option('Smithfield Plains -  Collins Court', 'COLLINS COURT');
		thisfield.options[14] = new Option('Victor Harbor -  Harbor Views', 'HARBOR VIEWS');
	}

}