function changeType() {	var type = document.getElementById("type");	var selectElement = document.getElementById("fees");	switch(type.selectedIndex){		case 0:			alert("「本誌のみ」「タイプⅠ」「タイプⅡ」のいずれかを選択してください");			break;		case 1:			selectElement.options[0].text = "本誌のみ（税込4,200円／月）";				for(var i=1; i<30; i++){					selectElement.options[i].text = null;				}			break;		case 2:			selectElement.options[0].text = "タイプ I ：1台（税込10,500円／月）";			selectElement.options[1].text = "タイプ I ：2台（税込16,800円／月）";			selectElement.options[2].text = "タイプ I ：3台（税込23,100円／月）";			selectElement.options[3].text = "タイプ I ：4台（税込29,400円／月）";			selectElement.options[4].text = "タイプ I ：5台（税込35,700円／月）";			selectElement.options[5].text = "タイプ I ：6台（税込42,000円／月）";			selectElement.options[6].text = "タイプ I ：7台（税込48,300円／月）";			selectElement.options[7].text = "タイプ I ：8台（税込54,600円／月）";			selectElement.options[8].text = "タイプ I ：9台（税込60,900円／月）";			selectElement.options[9].text = "タイプ I ：10台（税込67,200円／月）";			selectElement.options[10].text = "タイプ I ：11台（税込72,450円／月）";			selectElement.options[11].text = "タイプ I ：12台（税込77,700円／月）";			selectElement.options[12].text = "タイプ I ：13台（税込82,950円／月）";			selectElement.options[13].text = "タイプ I ：14台（税込88,200円／月）";			selectElement.options[14].text = "タイプ I ：15台（税込93,450円／月）";			selectElement.options[15].text = "タイプ I ：16台（税込98,700円／月）";			selectElement.options[16].text = "タイプ I ：17台（税込103,950円／月）";			selectElement.options[17].text = "タイプ I ：18台（税込109,200円／月）";			selectElement.options[18].text = "タイプ I ：19台（税込114,450円／月）";			selectElement.options[19].text = "タイプ I ：20台（税込119,700円／月）";			selectElement.options[20].text = "タイプ I ：21台（税込123,900円／月）";			selectElement.options[21].text = "タイプ I ：22台（税込128,100円／月）";			selectElement.options[22].text = "タイプ I ：23台（税込132,300円／月）";			selectElement.options[23].text = "タイプ I ：24台（税込136,500円／月）";			selectElement.options[24].text = "タイプ I ：25台（税込140,700円／月）";			selectElement.options[25].text = "タイプ I ：26台（税込144,900円／月）";			selectElement.options[26].text = "タイプ I ：27台（税込149,100円／月）";			selectElement.options[27].text = "タイプ I ：28台（税込153,300円／月）";			selectElement.options[28].text = "タイプ I ：29台（税込157,500円／月）";			selectElement.options[29].text = "タイプ I ：30台（税込161,700円／月）";			break;		case 3:			selectElement.options[0].text = "タイプ II ：1台（税込21,000円／月）";			selectElement.options[1].text = "タイプ II ：2台（税込33,600円／月）";			selectElement.options[2].text = "タイプ II ：3台（税込46,200円／月）";			selectElement.options[3].text = "タイプ II ：4台（税込58,800円／月）";			selectElement.options[4].text = "タイプ II ：5台（税込71,400円／月）";			selectElement.options[5].text = "タイプ II ：6台（税込84,000円／月）";			selectElement.options[6].text = "タイプ II ：7台（税込96,600円／月）";			selectElement.options[7].text = "タイプ II ：8台（税込109,200円／月）";			selectElement.options[8].text = "タイプ II ：9台（税込121,800円／月）";			selectElement.options[9].text = "タイプ II ：10台（税込134,400円／月）";			selectElement.options[10].text = "タイプ II ：11台（税込144,900円／月）";			selectElement.options[11].text = "タイプ II ：12台（税込155,400円／月）";			selectElement.options[12].text = "タイプ II ：13台（税込165,900円／月）";			selectElement.options[13].text = "タイプ II ：14台（税込176,400円／月）";			selectElement.options[14].text = "タイプ II ：15台（税込186,900円／月）";			selectElement.options[15].text = "タイプ II ：16台（税込197,400円／月）";			selectElement.options[16].text = "タイプ II ：17台（税込207,900円／月）";			selectElement.options[17].text = "タイプ II ：18台（税込218,400円／月）";			selectElement.options[18].text = "タイプ II ：19台（税込228,900円／月）";			selectElement.options[19].text = "タイプ II ：20台（税込239,400円／月）";			selectElement.options[20].text = "タイプ II ：21台（税込247,800円／月）";			selectElement.options[21].text = "タイプ II ：22台（税込256,200円／月）";			selectElement.options[22].text = "タイプ II ：23台（税込264,600円／月）";			selectElement.options[23].text = "タイプ II ：24台（税込273,000円／月）";			selectElement.options[24].text = "タイプ II ：25台（税込281,400円／月）";			selectElement.options[25].text = "タイプ II ：26台（税込289,800円／月）";			selectElement.options[26].text = "タイプ II ：27台（税込298,200円／月）";			selectElement.options[27].text = "タイプ II ：28台（税込306,600円／月）";			selectElement.options[28].text = "タイプ II ：29台（税込315,000円／月）";			selectElement.options[29].text = "タイプ II ：30台（税込323,400円／月）";			break;		}}
