function get_venues()
{
	var slocations = document.getElementById('location_id');
	var location_id = slocations.options[slocations.selectedIndex].value;
	
	var select = document.getElementById('venue_id');
	
	select.options.length = 0;
	
	if (location_id > 0)
	{
		select.options[0] = new Option("Please Select", "", true, true);
		
		for (i = 0; i < location_venues[location_id].length; i++)
		{
			select.options[i+1] = new Option(location_venues[location_id][i]['name'], location_venues[location_id][i]['id'], false, false);
		}
	}
	else
	{
		select.options[0] = new Option("Select Location", "", false, false);
		select.options[0].disabled = true;
	}
}

