﻿// JavaScript Document
function chkCarTypeSelect(){
	with (document.qForm){
			if(selectSet[ct.value]) {
				cm.options.length=0;
				for(var i=0;i<selectSet[ct.value].length;i++){
					cm.options.add(selectSet[ct.value][i]);
				}
			}else{
				cm.options.length=0;
				cm.options.add(new Option('全部型號','0'));
			}
	}
}
