// JavaScript Document
function setOptions(id, target, level){
var select2 = target;
select2.options.length = 0;
//
if(level=="1"){
select2.options[select2.options.length] = new Option('-- Kies categorie --');}
else if(level=="2"){
select2.options[select2.options.length] = new Option('-- Kies dier --');}
else if(level=="3"){
select2.options[select2.options.length] = new Option('-- Kies diersoort --');}
//
if(id == "01") { // [categorie]
select2.options[select2.options.length] = new Option('Knaagdieren','a');
select2.options[select2.options.length] = new Option('Insecten','b');
select2.options[select2.options.length] = new Option('Hout- en materiaalaantasters','c');
}else if(id == "a") // [categorie][knaagdieren]
{
select2.options[select2.options.length] = new Option('Muizen','a1');
select2.options[select2.options.length] = new Option('Ratten','a2');
}else if(id == "b") // [categorie][insecten]
{
select2.options[select2.options.length] = new Option('Bedwants','b1');
select2.options[select2.options.length] = new Option('Bijen','b2');
select2.options[select2.options.length] = new Option('Franjestaarten','b3');
select2.options[select2.options.length] = new Option('Kakkerlakken','b4');
select2.options[select2.options.length] = new Option('Mieren','b5');
select2.options[select2.options.length] = new Option('Motten','b6');
select2.options[select2.options.length] = new Option('Spinnen','b9');
select2.options[select2.options.length] = new Option('Vliegen ','b10');
select2.options[select2.options.length] = new Option('Vlooien','b11');
select2.options[select2.options.length] = new Option('Wespen','b12');
}else if(id == "c") // [categorie][hout- en materiaalaantasters]
{
select2.options[select2.options.length] = new Option('Houtaantasters','c1');
select2.options[select2.options.length] = new Option('Materiaalaantasters','c2');
}else if(id == "a1") // [categorie][knaagdieren][muizen]
{
select2.options[select2.options.length] = new Option('Bosmuis','5701');
select2.options[select2.options.length] = new Option('Huismuis','5699');
select2.options[select2.options.length] = new Option('Veldmuis','5700');
}else if(id == "a2") // [categorie][knaagdieren][ratten]
{
select2.options[select2.options.length] = new Option('Bruine rat','5702');
select2.options[select2.options.length] = new Option('Muskusrut','5704');
select2.options[select2.options.length] = new Option('Woelrat','5705');
select2.options[select2.options.length] = new Option('Zwarte rat','5703');
}else if(id == "b1") // [categorie][insecten][bedwants]
{
select2.options[select2.options.length] = new Option('Bedwant','5706');
}else if(id == "b2") // [categorie][insecten][bijen]
{
select2.options[select2.options.length] = new Option('Hommels','5686');
select2.options[select2.options.length] = new Option('Honingbij','5685');
}else if(id == "b3") // [categorie][insecten][franjestaarten]
{
select2.options[select2.options.length] = new Option('Ovenvisje','5714');
select2.options[select2.options.length] = new Option('Papiervisje','5716');
select2.options[select2.options.length] = new Option('Zilvervisje','5715');
}else if(id == "b4") // [categorie][insecten][kakkerlakken]
{
select2.options[select2.options.length] = new Option('Amerikaanse kakkerlak','5670');
select2.options[select2.options.length] = new Option('Australische kakkerlak','5679');
select2.options[select2.options.length] = new Option('Bruinband kakkerlak','5680');
select2.options[select2.options.length] = new Option('Duitse kakkerlak','5681');
select2.options[select2.options.length] = new Option('Oosterse kakkerlak','5682');
select2.options[select2.options.length] = new Option('Surinaamse kakkerlak','5683');
}else if(id == "b5") // [categorie][insecten][mieren]
{
select2.options[select2.options.length] = new Option('Faraomier','5697');
select2.options[select2.options.length] = new Option('Grasmier','5696');
select2.options[select2.options.length] = new Option('Rode mimer','5698');
select2.options[select2.options.length] = new Option('Rode steekmier','5691');
select2.options[select2.options.length] = new Option('Tuinmieren','5690');
}else if(id == "b6") // [categorie][insecten][motten]
{
select2.options[select2.options.length] = new Option('Bruine huismot','5738');
select2.options[select2.options.length] = new Option('Cacaomot','5737');
select2.options[select2.options.length] = new Option('Kleermot','5717');
select2.options[select2.options.length] = new Option('Meelmot','5740');
select2.options[select2.options.length] = new Option('Pelsmot','5718');
select2.options[select2.options.length] = new Option('Tropische cacaomot','5741');
select2.options[select2.options.length] = new Option('Vruchtmot','5742');
}else if(id == "b9") // [categorie][insecten][spinnen]
{
select2.options[select2.options.length] = new Option('Spinnen','16493');
}else if(id == "b10") // [categorie][insecten][vliegen]
{
select2.options[select2.options.length] = new Option('Grasvlieg','5709');
select2.options[select2.options.length] = new Option('Herfstvlieg','5710');
select2.options[select2.options.length] = new Option('Kamervlieg','5711');
select2.options[select2.options.length] = new Option('Kleine kamervlieg','5712');
select2.options[select2.options.length] = new Option('Klustervlieg','5713');
}else if(id == "b11") // [categorie][insecten][vlooien]
{
select2.options[select2.options.length] = new Option('Kattenvlooi','5708');
select2.options[select2.options.length] = new Option('Vogelvlooi','5707');
}else if(id == "b12") // [categorie][insecten][wespen]
{
select2.options[select2.options.length] = new Option('Graafwespen','5689');
select2.options[select2.options.length] = new Option('Hoornaar','5688');
select2.options[select2.options.length] = new Option('Limonadewespen','5687');
}else if(id == "c1") // [categorie][hout- en maateriaaltesters][houtaantasters]
{
select2.options[select2.options.length] = new Option('Gewone houtwormkever','5743');
select2.options[select2.options.length] = new Option('Grote houtwormkever','5744');
select2.options[select2.options.length] = new Option('Heipaalkever','5748');
select2.options[select2.options.length] = new Option('Huisboktor','5745');
select2.options[select2.options.length] = new Option('Huiszwam','5749');
select2.options[select2.options.length] = new Option('Kelderzwam','5750');
select2.options[select2.options.length] = new Option('Spinthoutkevers','5746');
select2.options[select2.options.length] = new Option('Zachte houtwormkever','5747');
}else if(id == "c2") // [categorie][hout- en maateriaaltesters][materiaalaantasters]
{
select2.options[select2.options.length] = new Option('Australische tapijtkever','5755');
select2.options[select2.options.length] = new Option('Gewone spekkever','5751');
select2.options[select2.options.length] = new Option('Gewone tapijtkever','5752');
select2.options[select2.options.length] = new Option('Pelskever','5753');
select2.options[select2.options.length] = new Option('Piepschuimkever','5756');
select2.options[select2.options.length] = new Option('Ronde diefkever','5757');
select2.options[select2.options.length] = new Option('Zwartbruine spekkever','5754');
}
//
if(id != "01"){
select2.focus()
}}