function getShowtimes(){
	var url = '/showtimes/cinema_showtimes';
	var pars = 'cinema_id=' + encodeURIComponent($('CinemaId').value);
	var myAjax = new Ajax.Updater(
				'movie_search', 
				url, 
				{
					method: 'get', 
					parameters: pars
				});

}

function toggleSearchForm(hide){
	if (hide)
	{
		$('cinema_form').hide();
		if ($('cinema_result'))
		{
			$('cinema_result').show();
		}
		
	}
	else
	{
		$('cinema_form').show();
		if ($('cinema_result'))
		{
			$('cinema_result').hide();
		}
	}
}