The code that follows can be found in the file called shipmenu.snp v2.0.7.1

  This is the default snippit located in "[Settings_AppDir]\Templates\Common" folder

  begin file shipmenu.snp - - - - - - - - - - - - - - - - - - -->

  <tr>
    <td valign=top align=center colspan=2>
      <br>
      <font face=Arial size=2><center><H3>Shipping Information</H3><br>
    </td>
  </tr>
  <tr>
    <td align=right>
      <script language="javascript">
      // Create a drop down menu for shipping
      document.write("Select shipping:</td><td align=left>");
      document.write("<SELECT NAME=\"shipCombo\">");

      for(var i = 0; i < shipOption.length; i++)
      {
        var strLabel;
        var strCharge;
        var strHandling;

        strLabel = shipOption[i].Label;
        nCharge = GetShippingCharge(i);
        nTotalCharge = nCharge + shipOption[i].HandlingFee;
        strCharge = nTotalCharge.toString();
        document.write("<OPTION VALUE=\"" + shipOption[i].ID + "\">" + strLabel + " ([Projects_CurrencySymbol] " + strCharge + ")</OPTION>");
      }
      document.write("</SELECT>");
      if(freeShip)
      {
        document.write("</td></tr><tr><td colspan=2>");
        document.write("<center><b><font size=3 color=blue>");
        document.write("<marquee>CONGRATULATIONS! You have ");
        document.write("qualified for FREE SHIPPING ... Please ");
        document.write("select your Free Shipping method above...");
        document.write("</marquee></b><br><font size=1 color=black>");
        document.write("*Please note that some Premium Shipping<br>");
        document.write("methods may require additional shipping ");
        document.write("charges.<br></center></font></font>");
      }
      </script>
    </td>
  </tr>
<!-- end of file shipmenu.snp - - - - - - - - - - - - - - - - - -