// JavaScript Document
function buildSelect(x) { //alert(x) ; //return

if (x == "12") { 
  /* set choices 1 and 2 */
  option0 = new Option("","")
  option1 = new Option("przelotowa","przelotowa")
  option2 = new Option("rozgałęziona","rozgałęziona")
  // write them
  document.zapytanie.kineta.options[0] = option0
  document.zapytanie.kineta.options[1] = option1
  document.zapytanie.kineta.options[2] = option2
  return;
  }

if (x == "00") { 
  /* set choices to none */ 
  option0 = new Option("","")
  option1 = new Option("","")
  option2 = new Option("","")
  // write them
  document.zapytanie.kineta.options[0] = option0
  document.zapytanie.kineta.options[1] = option1
  document.zapytanie.kineta.options[2] = option2
  return;
  } 
}

function buildSelect_wlaz_dn(x) { //alert(x) ; //return

if (x == "12") { 
  /* set choices 1 and 2 */
  option0 = new Option("","")
  option1 = new Option("600","600")
  option2 = new Option("800","800")
  // write them
  document.zapytanie.fiw.options[0] = option0
  document.zapytanie.fiw.options[1] = option1
  document.zapytanie.fiw.options[2] = option2
  return;
  }

if (x == "00") { 
  /* set choices to none */ 
  option0 = new Option("","")
  option1 = new Option("","")
  option2 = new Option("","")
  // write them
  document.zapytanie.fiw.options[0] = option0
  document.zapytanie.fiw.options[1] = option1
  document.zapytanie.fiw.options[2] = option2
  return;
  } 
}

function buildSelect_wlaz_F(x) { //alert(x) ; //return

if (x == "12") { 
  /* set choices 1 and 2 */
  option0 = new Option("","")
  option1 = new Option("5","5")
  option2 = new Option("12,5","12,5")
  option3 = new Option("25","25")
  option4 = new Option("40","40")
  // write them
  document.zapytanie.F.options[0] = option0
  document.zapytanie.F.options[1] = option1
  document.zapytanie.F.options[2] = option2
  document.zapytanie.F.options[3] = option3
  document.zapytanie.F.options[4] = option4
  return;
  }

if (x == "00") { 
  /* set choices to none */ 
  option0 = new Option("","")
  option1 = new Option("","")
  option2 = new Option("","")
  option3 = new Option("","")
  option4 = new Option("","")
  // write them
  document.zapytanie.F.options[0] = option0
  document.zapytanie.F.options[1] = option1
  document.zapytanie.F.options[2] = option2
  document.zapytanie.F.options[3] = option3
  document.zapytanie.F.options[4] = option4
  return;
  } 
}
