<!--
	function setCategory(frm,MkID,sM){
		var c=frm.cate_id;
		while (c.options.length > 0) {
			 c.options[(c.options.length - 1)] = null;	
		}
		c.options[0]=new Option('......... All Categoreis .........','0');
		if(sM=='0') c.options[0].selected=true;
		if((MkID != "0") && (MkID.substring(0,1)!="z") && (MkID!="")) {
		var aM = eval("Cat['"+ MkID +"'].split(',')");
		var j = 0;
			if(aM.length > 1){
			for (var i=0; i < aM.length/2; i++) {
					if(aM[j+1] != null && aM[j] != ""){
						c.options[i+1]= new Option(aM[j+1],aM[j]);
						if(aM[j]==sM) c.options[i+1].selected=true;
					}
					j += 2;				
				}
				c.disabled=false;
			}
			else 
			{
				c.disabled=true;
			}
		}
		else
		{
			c.options[0].selected=true;
			c.disabled=true;
		}	
	}


function setProv2(frm,sP) {
	var c=frm.Prov1;
	var aP = eval("PV.split(',')");
	var j = 0;
	if(sP=='0' || sP=='') c.options[0].selected=true;
	for (i=0; i < (aP.length/2); i++) {
		c.options[i]= new Option(aP[j+1],aP[j]);
		if(aP[j]==sP) c.options[i].selected=true;
		j += 2;
	}	
}
function setJkm(frm,sKm){
	var c=frm.Jkm;
	for(i=0;i<c.length;i++){
		if(c.options[i].value==sKm) c.options[i].selected=true;
	}
}
//-->
