function LocationSwitch() {
	if (document.getElementById('location').value != '195') {
			document.getElementById('destination').value = '195';
			document.getElementById('destination').disabled = true;
	}		
	else {
			document.getElementById('destination').value = '0';
			document.getElementById('destination').disabled = false;
	}
}

function DestinationSwitch() {
	if (document.getElementById('destination').value != '195') {
			document.getElementById('location').value = '195';
	}		
	else {
			document.getElementById('location').value = '0';
	}
}