function timeOptions() {
	timeOptionsSet(document.f1.time1);
	timeOptionsSet(document.f1.time2);
}

function timeOptionsSet(t) {
	var	i	=	t.selectedIndex;		//	選択されている
	var	sel	=	t.options[i].text;		//  選択されている text
	var	n = 0;
	t.options[n++] = new Option("-----", "");
	// 南青山・SICIS・EST
	if (document.f1.studio.value.match(/(TOKYO|SICIS|EST)/i)) {
	} else {
		t.options[n++] = new Option("10:00", "10:00");
	}
	t.options[n++] = new Option("11:00", "11:00");
	t.options[n++] = new Option("12:00", "12:00");
	t.options[n++] = new Option("13:00", "13:00");
	t.options[n++] = new Option("14:00", "14:00");
	t.options[n++] = new Option("15:00", "15:00");
	t.options[n++] = new Option("16:00", "16:00");
	t.options[n++] = new Option("17:00", "17:00");
	//	南青山・SICIS・EST・大阪・福岡・鹿児島
	if (document.f1.studio.value.match(/(TOKYO|SICIS|EST|大阪|福岡|鹿児島)/i)) {
		t.options[n++] = new Option("18:00", "18:00");
	}
	t.options[n++] = null;				//	消去
	t.options[n++] = null;				//	消去
	//
	for (i = 0; i < t.options.length; i++) {
		if (sel == t.options[i].text)	{
			t.selectedIndex	=	i;		// 選択する
		}
	}
}

