﻿function slctr(texto,valor){
	this.texto = texto
	this.valor = valor
}
//** A
var a13=new Array()
	a13[0] = new slctr('Presentación')
	a13[1] = new slctr("200 Unidades",'FFG013WPZ')
//** B
var a25=new Array()
	a25[0] = new slctr('Presentación')
	a25[1] = new slctr("200 unidades",'FFG025WPZ')
//** C
var a47=new Array()
	a47[0] = new slctr('Presentación')
	a47[1] = new slctr("100 unidades",'FFG025WPH')
//** D
var a90=new Array()
	a90[0] = new slctr('Presentación')
	a90[1] = new slctr("100 unidades",'FFG025WPH')

	
function slctryole(cual,donde){
	if(cual.selectedIndex != 0){
		donde.length=0
		cual = eval(cual.value)
		for(m=0;m<cual.length;m++){
			var nuevaOpcion = new Option(cual[m].texto);
			donde.options[m] = nuevaOpcion;
			if(cual[m].valor != null){
				donde.options[m].value = cual[m].valor
			}
			else{
				donde.options[m].value = cual[m].texto
			}
		}
	}
}

function inputFinal1(value){
	document.getElementById('inputFinal').style.display="";
	document.getElementById('inputFinal').value= value;
}
