// PayPal Specific Select
<!--
var noary = new Array (  // Infant TShirt Newborn
  "White"
);
var itary = new Array (  // Infant TShirt Small
  "White",
  "Black"
);
var itary = new Array (  // Infant T Shirt Medium
  "White",
  "Black"
);
var itary = new Array (  // Infant T Shirt Large
  "White",
  "Black"
);
var itary = new Array (  // Infant Onsie Newborn
  "White",
  "Black"
);
var ilsary = new Array (  // Infant Onsie Small
  "White",
  "Black"
);
var ilsary = new Array (  // Infant Onsie Medium
  "White",
  "Black"
);
var ilsary = new Array (  // Infant Onsie Large
  "White",
  "Black"
);
var ilsary = new Array (  // Infant T-Shirt Six
  "White",
  "Black"
);
var ttary = new Array (  // Infant T-Shirt Twelve
  "Black",
  "White",
  "Red"
);
var ttary = new Array (  // Toddler TShirt XSmall
  "Black",
  "White",
  "Red"
);
var lstary = new Array (  // Long Sleeve Toddler Tee XSmall
  "Black",
  "White"
);
var lstary = new Array (  // Long Sleeve Toddler Tee XSmall
  "Black",
  "White"
);

function Mod1 (obj) {  // write new data inbto select
var i,pos;
  obj.form.color_1b.options.length = 0;  // clear the old values
  pos = obj.selectedIndex;          // item selected

  if (pos == 0) {  // stuff in the christmas scents
    for (i=0; i<noary.length; i++) {
      var opt = new Option (noary[i], noary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 1) {  // stuff in the christmas scents
    for (i=0; i<noary.length; i++) {
      var opt = new Option (noary[i], noary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 2) {  // stuff in the TG scents...
    for (i=0; i<itary.length; i++) {
      var opt = new Option (itary[i], itary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 3) {  // stuff in the TG scents...
    for (i=0; i<itary.length; i++) {
      var opt = new Option (itary[i], itary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 4) {  // stuff in the TG scents...
    for (i=0; i<itary.length; i++) {
      var opt = new Option (itary[i], itary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 5) {  // stuff in the TG scents...
    for (i=0; i<itary.length; i++) {
      var opt = new Option (itary[i], itary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 6) {  // stuff in the TG scents...
    for (i=0; i<ilsary.length; i++) {
      var opt = new Option (ilsary[i], ilsary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 7) {  // stuff in the TG scents...
    for (i=0; i<ilsary.length; i++) {
      var opt = new Option (ilsary[i], ilsary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 8) {  // stuff in the TG scents...
    for (i=0; i<ilsary.length; i++) {
      var opt = new Option (ilsary[i], ilsary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 9) {  // stuff in the TG scents...
    for (i=0; i<ilsary.length; i++) {
      var opt = new Option (ilsary[i], ilsary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 10) {  // stuff in the TG scents...
    for (i=0; i<ttary.length; i++) {
      var opt = new Option (ttary[i], ttary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 11) {  // stuff in the TG scents...
    for (i=0; i<ttary.length; i++) {
      var opt = new Option (ttary[i], ttary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }
  if (pos == 12) {  // stuff in the TG scents...
    for (i=0; i<lstary.length; i++) {
      var opt = new Option (lstary[i], lstary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }  
  if (pos == 13) {  // stuff in the TG scents...
    for (i=0; i<lstary.length; i++) {
      var opt = new Option (lstary[i], lstary[i]);
      obj.form.color_1b.options[i] = opt;
    }
  }  

}
//-->