		function addOption(text,value,liste){
			newOption = new Option(text,value,false,false);
			document.getElementById(liste).options[document.getElementById(liste).length] = newOption;
			}

		function changeModele(codeMarque) {
			document.getElementById(ascx + 'TbDdlModele2').value='Tous'
			while(document.getElementById(ascx + 'DdlModele2').length>1) {
					document.getElementById(ascx + 'DdlModele2').options.remove(document.getElementById(ascx + 'DdlModele2').length-1);
				}
			if( t[codeMarque]) {
				tb = t[codeMarque].split(',');
				for(i=0;i<=tb.length-1;i++) {
						addOption(tb[i],tb[i],ascx + 'DdlModele2')
					}
				}
			}