/*
  Desenvolvido por:
  Gen Tecnologia / Construir Sites

      http://www.construirsites.com.br
      atendimento@construirsites.com.br
     +55 (83) 3252-1378

------------------------------------------------------------------*/

function selecionarSelect(form_name, form_input, valor) {
	var nIndex = document.getElementById(form_name).elements[form_input].options.length;
	for (var i=0;i<nIndex;i++){
		if(document.getElementById(form_name).elements[form_input].options[i].value == valor) {
			document.getElementById(form_name).elements[form_input].options[i].selected = true;
			break;
		}
	}
}

function montarAnoModelo(form_name, form_input, valor) {

	valor++;
	var limite = valor-2;

	for (var i=0;i<=2;valor--,i++){
		document.getElementById(form_name).elements[form_input].options[i] = 
			new Option(valor,valor);
	}
}

