// JavaScript Document

function up_events()
{
	
	var event = $('#location').val();
	
	$('#EventsSelectBenidorm').hide();
	$('#EventsSelectMajorca').hide();
	$('#EventsSelectSalou').hide();
	$('#EventsSelectRiga').hide();
	$('#EventsSelectBudapest').hide();
	$('#EventsSelectPrague').hide();
	$('#EventsSelectTallinn').hide();
    $('#EventsSelectBarcelona').hide();
	$('#EventsSelectMarbella').hide();
	$('#EventsSelectAmsterdam').hide();
	
	
	$('#EventsSelect' + event).show();
	
}
