
    function SetCidades(rx,args){
	var ops = rx.split('\r\n')
	var el =document.getElementById(args[1])
	//alert(args[2])
	var qt = el.options.length

	while(qt!=0){
		el.options[0]=null
		qt--
	//	el.removeChild(el.childNodes[--qt])
		}
	for(var i=0;i<ops.length;i++){
		if(ops[i]!=''){
			var anOption = document.createElement("option") 
//anOption.text = ops[i]
//anOption.value = ops[i]
//document.getElementById(oid).options.add(anOption) 
anOption.value =  ops[i];
anOption.appendChild(document.createTextNode(ops[i]));
el.appendChild(anOption);
		}}
		el.value=args[2]
	
		
		}

	function GetCidades(uf,umid,cidade){

	var el=new AjaxRequest(SetCidades,arguments);	
	var d=new Date()
//	el.submit('http://localhost/WebFret/cidade.ashx','?e='+d.getTime()+'&uf='+uf+'&c='+umid);
	el.submit('../layout/cidades.asp','?op='+uf+'&e='+d.getTime());
	} 
	function GetCidadesADM(uf,umid,cidade){
	var el=new AjaxRequest(SetCidades,arguments);	
	
	var d=new Date()
//	el.submit('http://localhost/WebFret/cidade.ashx','?e='+d.getTime()+'&uf='+uf+'&c='+umid);
	el.submit('../../layout/cidades.asp','?op='+uf+'&e='+d.getTime());
	} 

