//////////////////////////////////////////////////////////////////////////////

function ChangeDropdowns(propType) {
	
	switch( propType ) {
		case 'let':
			var letPriceBands = '<select name=\"priceBandFrom\" class=\"\">\n';
			letPriceBands += '<option value=\"500\">up to &pound;500</option>\n';
			letPriceBands += '<option value=\"500-800\">&pound;500 to &pound;800</option>\n';
			letPriceBands += '<option value=\"800-1200\">&pound;800 to &pound;1200</option>\n';
			letPriceBands += '<option value=\"1200\">over &pound;1200</option>\n';
			letPriceBands += '</select>';
			element = document.getElementById('priceFromTitle');
			element.innerHTML =  'Price Band';
			element = document.getElementById('priceFromDropdown');
			element.innerHTML = letPriceBands;
			
			element = document.getElementById('priceToTitle');
			element.innerHTML =  '';
			element = document.getElementById('priceToDropdown');
			element.innerHTML = '';
			break;

		default:
			var buyPriceBands = '<option value=\"0\">&pound;0</option>\n';
			buyPriceBands += '<option value=\"100000\">&pound;100,000</option>\n';
			buyPriceBands += '<option value=\"125000\">&pound;125,000</option>\n';
			buyPriceBands += '<option value=\"150000\">&pound;150,000</option>\n';
			buyPriceBands += '<option value=\"200000\">&pound;200,000</option>\n';
			buyPriceBands += '<option value=\"250000\">&pound;250,000</option>\n';
			buyPriceBands += '<option value=\"300000\">&pound;300,000</option>\n';
			buyPriceBands += '<option value=\"350000\">&pound;350,000</option>\n';
			buyPriceBands += '<option value=\"400000\">&pound;450,000</option>\n';
			buyPriceBands += '<option value=\"500000\">&pound;500,000</option>\n';
			buyPriceBands += '<option value=\"600000\">&pound;500,000</option>\n';
			buyPriceBands += '<option value=\"700000\">&pound;500,000</option>\n';
			buyPriceBands += '<option value=\"800000\">&pound;500,000</option>\n';
			buyPriceBands += '<option value=\"1000000\">&pound;1,000,000+</option>\n';

			var buyPriceBandsFrom = '<select name=\"priceBandFrom\" class=\"\">\n' + buyPriceBands + '</select>';
			var buyPriceBandsTo = '<select name=\"priceBandTo\" class=\"\">\n' + buyPriceBands + '</select>';

			element = document.getElementById('priceFromTitle');
			element.innerHTML = 'Price From';
			element = document.getElementById('priceFromDropdown');
			element.innerHTML = buyPriceBandsFrom;
			element = document.getElementById('priceToTitle');
			element.innerHTML = 'Price To';
			element = document.getElementById('priceToDropdown');
			element.innerHTML = buyPriceBandsTo;
			break;
	}
}

//////////////////////////////////////////////////////////////////////////////
