var alDot = "Alabama DOT\nBureau of Materials & Testing\nRandy Mountcastle\n1409 Coliseum Blvd.\nMontgomery, AL\nPhone: 334-206-2395"
var arHi = "Arkansas Highway & Transportation Department\nMaterials Division\nBill Wall, Materials Engineer\nPO Box 2261\nLittle Rock AR 72203"
var ilAs = "Asphalt Sales & Products\nScott Wampler\n6 Commerce Dr.\nLebanon, IL 62254\nPhone: 618-632-7676"
var laBar = "Barriere Construction\nBarry Nunez, Lab Manager\nPhone: 504-366-3707 OR\nJohn Victory, QC Manager\nPhone: 504-581-7283\nPO Box 2430\nNew Orleans, LA 70176"
var iaCes = "Cessford Construction Co.\nTed Huisman, QC Manager\nPO Box 160\nLegrand, IA 50142\nPhone: 515-479-2695"
var azMes = "City of Mesa, Arizona\nJim Bell, Lab Manager OR\nBill Dubois\nPO Box 1466\nMesa, AZ 85211-1466\nPhone: 602-644-3131"
var mnCom = "Cormercial Asphalt Co.\nRobb Kuehborn, Lab Manager\n475 West Minnehaha Ave.\nSt. Paul, MN 55103\nPhone: 651-488-8402"
var laDia = "Diamond B Construction\nB & C Asphalt\nMark LaCroix\nPO Box 7177\nAlexandria, LA 71306-7177\nPhone: 318-442-0008"
var alEas = "East Alabama Paving Co., Inc.\nGuy Savage\nPO Box 2630\nOpelika, AL 36803-2630\nPhone: 334-742-0988"
var alHos = "Hosea O. Weaver & Sons, Inc.\nBub Brassell\nPO Box 8039\nMobile, AL 36608-8039\nPhone: 800-239-2205"
var mnInd = "Independent Testing Technologies\nBob Morrison, Bituminous Mgr.\nPO Box 525\nWaite Park, MN 56387\nPhone: 320-253-4338"
var mnMid = "Midwest Asphalt Corporation\nMourad Bouhajja\nPO Box 5477\nHopkins, MN 55343\nPhone: 952-937-1729"
var mtDot = "Montana DOT\nScott Barnes, Materials Bureau Supervisor\n2701 Prospect Ave.\nHelena, MT 59601\nPhone: 406-444-6360"
var orDot = "Oregon DOT\nMike Remily, Bituminous Engineer\n800 Airport Rd. SE\nSalem, OR 97310\nPhone: 503-986-3120"
var utQc = "QC Testing\nBob or Troy Dunsmore\nVernal, UT\nPhone: 435-789-0220"
var meQua = "Quality Testing & Design\nVaughan Stevens, Bit. Pavement Design Engineer\nAugusta, ME\nPhone: 207-622-2042"
var nySuf = "Suffolk Asphalt Supply\nRason Asphalt, Inc.\nFred Wallenquest\n242 Rabro Dr.\nHauppauge, NY 11788\nPhone: 516-239-2204"
var vaSup = "Superior Paving Corporation\nJoe Lynch\nPhone: 540-439-1500\nRichard Maddox Jr.\nPhone: 703-631-5480\nCenterville, VA"
var neUs = "US Aphalt\nOmni Engineering\nMatt Christiansen OR\nTem Hemsley\n14012 Giles Rd.\nOmaha, NE\nPhone: 402-895-6666"
var utDot = "Utah DOT\nMurari Pradhan, Bituminous Materials Engineer\nSalt Lake City, UT\nPhone: 801-965-4521"

function display(info)  {

  document.someThing.chooseBox.value=("-1")

  if (document.someThing.selectorBox.options[1].selected)  {
    document.someThing.mofoBox.value=alDot
  }

  if (document.someThing.selectorBox.options[2].selected)  {
    document.someThing.mofoBox.value=arHi
  }

  if (document.someThing.selectorBox.options[3].selected)  {
    document.someThing.mofoBox.value=ilAs
  }

  if (document.someThing.selectorBox.options[4].selected)  {    
    document.someThing.mofoBox.value=laBar
  }

  if (document.someThing.selectorBox.options[5].selected)  {
    document.someThing.mofoBox.value=iaCes
  }
  if (document.someThing.selectorBox.options[6].selected)  {
    document.someThing.mofoBox.value=azMes
  }  
  if (document.someThing.selectorBox.options[7].selected)  {
    document.someThing.mofoBox.value=mnCom
  }  
  if (document.someThing.selectorBox.options[8].selected)  {
    document.someThing.mofoBox.value=laDia
  }  
  if (document.someThing.selectorBox.options[9].selected)  {
    document.someThing.mofoBox.value=alEas
  }  
  if (document.someThing.selectorBox.options[10].selected)  {
    document.someThing.mofoBox.value=alHos
  }  
  if (document.someThing.selectorBox.options[11].selected)  {
    document.someThing.mofoBox.value=mnInd
  }  
  if (document.someThing.selectorBox.options[12].selected)  {
    document.someThing.mofoBox.value=mnMid
  }  
  if (document.someThing.selectorBox.options[13].selected)  {
    document.someThing.mofoBox.value=mtDot
  }  
  if (document.someThing.selectorBox.options[14].selected)  {
    document.someThing.mofoBox.value=orDot
  }  
  if (document.someThing.selectorBox.options[15].selected)  {
    document.someThing.mofoBox.value=utQc
  }  
  if (document.someThing.selectorBox.options[16].selected)  {
    document.someThing.mofoBox.value=meQua
  }  
  if (document.someThing.selectorBox.options[17].selected)  {
    document.someThing.mofoBox.value=nySuf
  }  
  if (document.someThing.selectorBox.options[18].selected)  {
    document.someThing.mofoBox.value=vaSup
  }  
  if (document.someThing.selectorBox.options[19].selected)  {
    document.someThing.mofoBox.value=neUs
  }  
  if (document.someThing.selectorBox.options[20].selected)  {
    document.someThing.mofoBox.value=utDot
  }  
}

