function verifica()
{
  var sel = document.getElementById( 'motivo' );
  var textOculto = document.getElementById( 'textOculto' );
  
  if( sel.options[ sel.selectedIndex ].value == 'Otro' )
  {
    textOculto.style.display = 'block';
  }
  else
  {
    textOculto.style.display = 'none';
  }
}









function gotoPage(varItem)
{
  switch(varItem)
  {
    case 2:
      window.location="cotizar/cotizar.html";
      break;
  }
}
// -->
