function getTopics(i) {
	//var i = document.form1.dept.type[document.forms['custform'].dept.selectedIndex].value;
	var topicid = document.frmContact.d_department;

	topicid.length = 0;
	
	switch (i) {
	case '0':
		topicid.options[0] = new Option('Select a Department');
		break;
	case '1':
		topicid.options[0] = new Option('Select a Department','0');
		topicid.options[1] = new Option('Acoustic & Digital Pianos', 'pianos');
		topicid.options[2] = new Option('Band Instruments', 'Brass');
		topicid.options[3] = new Option('Computer Music', 'Computer');
		topicid.options[4] = new Option('DJ Gear', 'DJ');
		topicid.options[5] = new Option('Drums & Percussion', 'Drums');
		topicid.options[6] = new Option('Guitar/Bass & Amps', 'Guitars');
		topicid.options[7] = new Option('Home Digital Pianos/Keyboards', 'kHome');
		topicid.options[8] = new Option('Keyboards & Modules', 'kPRO');
		topicid.options[9] = new Option('Live Sound & Lighting', 'Live');
		topicid.options[10] = new Option('Music Gifts & Accessories', 'Musical');
		topicid.options[11] = new Option('Orchestral Strings', 'Orchestral');
		topicid.options[12] = new Option('Print Music & Videos', 'Print');
		topicid.options[13] = new Option('Recording', 'Recording');
		break;
	case '2':
		topicid.options[0] = new Option('Select a Service Area','0');
		topicid.options[1] = new Option('Accounts', 'Acc');
		topicid.options[2] = new Option('Customer Service', 'Cus');
		topicid.options[3] = new Option('Financing', 'Fin');
		topicid.options[4] = new Option('Marketing & Sponsorship', 'Mar');
		topicid.options[5] = new Option('Music Hall', 'MusicH');
		topicid.options[6] = new Option('Music Lessons', 'MusicL');
		topicid.options[7] = new Option('Rentals', 'Ren');
		topicid.options[8] = new Option('Repairs', 'Rep');
		topicid.options[9] = new Option('Website', 'Web');
		topicid.options[10] = new Option('Technical Support', 'Tec');
		topicid.options[11] = new Option('Web Order', 'Order');
		break;
	default:
		break;
	}	
	topicid.selectedIndex = 0;
	return;
}
