$(function(){
	
	
	$('div.otherCities div.handle').click(function(){
		$(this).fadeOut('slow', function(){
			$(this).next().show('slow');
			$(this).remove();
		});
	});


});
