function showAddress(option) {
	if(option == 2) {
		$(".offstate-possible-event-location").show();
		$(".offstate-known-event-location").hide();	
	} else if(option == 1) {
		$(".offstate-possible-event-location").hide();
		$(".offstate-known-event-location").show();
	} else {
		$(".offstate-possible-event-location").hide();
		$(".offstate-known-event-location").hide();
	}
}
