// JavaScript Document

	function GuardaDatos(forma_nb,campo_nb){
		
		this.laforma = document.forms[forma_nb];
		this.origen = this.laforma.elements[campo_nb];
		this.destino = this.laforma.elements[campo_nb+"_h"];
		
		this.destino.value = this.origen.options[this.origen.selectedIndex].text;
		
	}//function