
var SELECT_BOX = "cross.gif"

var ftSelect = true

function checkSelect(){

   var  mySelect=document.getElementById('country')
   var  theIndx=mySelect.selectedIndex;

   if (ftSelect == true && theIndx > -1){

     document.getElementById('countryimage').width=8
     document.getElementById('countryimage').height=8
     ftSelect = false
     checkSelect()
   }

  else{
       if (document.getElementById('country').title == "checkSelect"){

          if (mySelect.options[theIndx].value == "" ) {
                SELECT_BOX = "cross.gif"
          }
          else{
                SELECT_BOX = "check.gif"
          }
          document.getElementById("countryimage").src = "images/"+SELECT_BOX

       }

       else{
          SELECT_BOX = "check.gif"
          document.getElementById("countryimage").src = "images/"+SELECT_BOX

       }
  }
}

addEvent(window, "load", checkSelect)
addEvent(document, "keyup", checkSelect)
addEvent(document, "click", checkSelect)



