function show_pdf()
//
     {
     var selectBox = document.news.news_select;
     if (selectBox.selectedIndex == 0){
         return false; // Bitte auswaehlen    ist Eintrag Nr. 0 und wird ignoriert.
          }
     else {
         var item = selectBox.selectedIndex; // Ausgewaehltes Item auslesen
         selectBox.selectedIndex = 0; // Reset der Liste. Bitte auswaehlen     steht jetzt wieder oben.
         window.location.href = selectBox.options[item].value; // Datei anzeigen
          }
     }
//