function landlordreg() {
	//alert("register as landlord");
	$landlord_form = document.getElementById('landlord_reg');
	$landlord_check = document.getElementById('landlord');
	
	if ($landlord_check.checked == false) {
		$landlord_form.style.visibility='hidden';	
	}
	else
	{
		$landlord_form.style.visibility='visible';
	}
}

function pss_ownership() {

	$ownership_select = document.getElementById('ownership');
	$landlord_input = document.getElementById('landlord_input');
		$landlord_label = document.getElementById('landlord_label');

	$pss_valuation= document.getElementById('pss_valuation');
	
	if ($ownership_select.value == "Tenant"){
		$landlord_input.style.visibility='visible';
		$pss_valuation.innerHTML='<strong class="txt_7">Weekly Rent:</strong> (&pound;)';
		$landlord_label.style.visibility='visible';
		//alert("ownership panel - Tenant");
	}
	else  {
		$landlord_input.style.visibility='hidden';
		$pss_valuation.innerHTML='<strong class="txt_7">Property Value:</strong>';
		$landlord_label.style.visibility='hidden';
		//alert("ownership panel - Owner");
	}
	
}
