﻿        /* The function handling the event "onChange" */
        /* Jumping to other languages and countries */
        function handleChange(formID)
          {
            for (i=0; i<formID.selection.length; i++) /* "selection" is the name of the select tag */
              {
                /* If the value parameter of the selected input field is not empty */
                if ((formID.selection.options[i].selected) && (formID.selection.options[i].value != ""))
                  {
                    /* then go to the URL which is stored in the value of the input field */
                    var dest = formID.selection.options[i].value;
                   // alert(dest);
                   self.location = dest;

                  }
              }
          }

