// JavaScript Document
function showJSDropDown()
{      
  var dropDown = document.getElementById('dropDown');
  
  if(dropDown != null && typeof dropDown != 'undefined')
  {
      dropDown.style.display = "inline";
  }    
}


