var idName="l";

function createChildOptions(frmObj) {
	var pObj=frmObj.elements["p"].options;
	var pObjLen=pObj.length;
	var htm="<select name='l' onchange='createChildOptions2(this.form)' class='pulll'>";
	for(i=0; i<pObjLen; i++ ) {
		if(pObj[i].selected>0){
			var itemLen=item[i].length;
			for(j=0; j<itemLen; j++){
				htm+="<option value='"+item[i][j]+"'>"+item[i][j]+"<\/option>";
			}
		}
	}
	htm+="<\/select>";
	document.getElementById(idName).innerHTML=htm;
}

function init(){
	htm ="<select name='l' class='pulll'>";
	htm+="<option value=''>"+item[0][0]+"<\/option>";
	htm+="<\/select>";
	document.getElementById("l").innerHTML=htm;
}

