$(document).ready(function() {
	
	$('#location').change(function() {
		value = $(this).val();
		$('#finder > div').css('display', 'none');

		if(value == '') {
			return;	
		}
		
		$('#finder'+value).fadeIn();
	});
	
	$('.close').click(function() {
		$(this).parent().css('display', 'none');
	});
	
});