<!--
	function events() {
		var events = new Array();

		events[0] = "";
			/* ------------------------------------------------------------------------ */
		/* EDITABLE REGION															*/
		/* You'll need to edit/create a new title for each event. 		    		*/
		/* Along with the event title, you'll need to increase the array index 		*/
		/* incrementally, i.e. [0], then [1], then [2] etc.	                		*/

              		

		/* ------------------------------------------------------------------------ */

		document.write('<label for="event_title">Event title</label>');
		document.write('<select name="event_title" onchange="redirect(this.options.selectedIndex)">');
		document.write('<option selected="selected" disabled="disabled" value="">Please select...</option>');
		for (i=0;i<events.length;i++) {
			document.write("<option value=\""+ events[i] +"\">" + events[i] + "</option>");
		}
		document.write('</select>');
		document.write('<label for="event_time">Event time</label>');
		document.write('<select name="event_time"></select>');
	}

	function redirect(x) {

		var events = document.multicombo.event_title.options.length;

		var event_time = new Array(events)
		for (i=0; i<events; i++)
		event_time[i]=new Array();
		event_time[0][0] = new Option("");

		/* ------------------------------------------------------------------------ */
		/* EDITABLE REGION															*/
		/* You'll need to edit/create time options for each show. 	     			*/
		/* You can create as many options as you neeed per group, 			     	*/
		/* just change the second array id incrementally, i.e. [1]              	*/

        			

			
		/* ------------------------------------------------------------------------ */

		var temporary = document.multicombo.event_time;
	    
		for (i=temporary.options.length-1;i>0;i--)
			temporary.options[i]=null;
		for (i=0;i<event_time[x].length;i++){
			temporary.options[i]=new Option(event_time[x][i].text,event_time[x][i].text);
		}
		temporary.options[0].selected=true
	}
//-->


