$(document).ready(function(){

	$(".sub").click(function(event){
		$(this).next('.hidden').toggle('slow');
	});
	
	$('#showonother').hide();

	$('#Area').change(function() {
	    ($(this).val() == "Outside of Dorset") ? $('#showonother').slideDown() : $('#showonother').slideUp();
 	});
	
	$('#CurrentlyWork').change(function() {
	    ($(this).val() == "yes") ? $('#livework').html('work') : $('#livework').html('live');
	});
	
	
	
});


