var items=0;
function AddItem() {
  div=document.getElementById("items");
  button=document.getElementById("add");
   items++;
phil=items+1;

  if (items<5)
  {
document.form1.count.value=phil;
  newitem="<span class=bodyTextWhite1>Mouthpiece " + phil + ":</span><br><br>";
  newitem+="<select name=\"rim" + items;
  newitem+="\">";
  newitem+="<option selected>Select a Rim</option><option>40</option><option>41</option><option>42</option><option>43</option><option>43N</option><option>43W</option><option>43.5</option></select>";
  newitem+="&nbsp;&nbsp;&nbsp;";
  newitem+="<select name=\"cup" + items;
  newitem+="\">";
  newitem+="<option selected>Select a Cup</option><option>ES</option><option>SV</option><option>S</option><option>M</option><option>D</option><option>C</option><option>B</option><option>V</option></select>"
  newitem+="<br><br>";
  newnode=document.createElement("span");
  newnode.innerHTML=newitem;
  div.insertBefore(newnode,button);
  }
  
 else
 {
 alert ("You Can Only Choose 5 Mouthpieces.")
 }
 }
