function ShowExtraTextBox(dropdown){
	if(dropdown.value == 'Other') {
		document.getElementById('otherinput').style.display = 'block'
	} else {
		document.getElementById('otherinput').style.display = 'none'
	}
}
		
function ShowExtraApartInputs(tickbox){
	if(tickbox.checked == 1){
		document.getElementById('moveandstay-extra').style.display = 'block'
		document.getElementById('apart-input-one').style.display = 'block';
		document.getElementById('apart-input-two').style.display = 'block';
	} else {
		document.getElementById('moveandstay-extra').style.display = 'none'
		document.getElementById('apart-input-one').style.display = 'none';
		document.getElementById('apart-input-two').style.display = 'none';
	}
}