<!--
	
	function ChangeForm( service ) {
					
		switch (service) {
		
			case 'none':
				HideAll();
			break;
		
			case 'buying':
				ShowBuying();
			break;
			
			case 'selling':
				ShowSelling();
			break;
			
			case 'buying_and_selling':
				ShowBoth();
			break;
			
			case 'remortgaging':
				ShowRemortgaging();
			break;
		
		}
		
	}
	
	function HideAll() {
		
		$('purchase_price_box').hide();
		$('purchase_property_box').hide();
		$('sale_price_box').hide();
		$('sale_property_box').hide();
		$('mortgage_value_box').hide();
		
	}
	
	function ShowBuying() {
		
		HideAll();
		
		$('purchase_price_box').show();
		$('purchase_property_box').show();
	
	}
	
	function ShowSelling() {
		
		HideAll();
		
		$('sale_price_box').show();
		$('sale_property_box').show();
		
	}
	
	function ShowBoth() {
	
		HideAll();
		
		$('purchase_price_box').show();
		$('purchase_property_box').show();
		$('sale_price_box').show();
		$('sale_property_box').show();
		
	}
	
	function ShowRemortgaging() {
	
		HideAll();
		
		$('mortgage_value_box').show();
	
	}
				
-->