
function fillCategory(){ 
 // this function is used to fill the category list on load
addOption(document.drop_list.category, "cat1cat2", "Modellen", "");
addOption(document.drop_list.category, "pcat1pcat2", "People", "");
addOption(document.drop_list.category, "kinderen", "Kinderen", "");
addOption(document.drop_list.category, "tieners", "Tieners", "");
addOption(document.drop_list.category, "special", "Specials", "");
addOption(document.drop_list.category, "colourfull", "Kleurrijk", "");
}

function SelectSubCat(){
// ON selection of category this function will work

removeAllOptions(document.drop_list.age);
//addOption(document.drop_list.age, "18to200", "Alle", "");

if(document.drop_list.category.value == 'cat1cat2' || document.drop_list.category.value == 'cat2' ){
addOption(document.drop_list.age,"18to35", "Alle", "");
addOption(document.drop_list.age,"18to25", "18 tot 25");
addOption(document.drop_list.age,"26to35", "26 tot 35");
}

if(document.drop_list.category.value == 'pcat1pcat2' || document.drop_list.category.value == 'pcat2' ){
addOption(document.drop_list.age,"18to200", "Alle", "");
addOption(document.drop_list.age,"18to25", "18 tot 25");
addOption(document.drop_list.age,"26to35", "26 tot 35");
addOption(document.drop_list.age,"36to55", "36 tot 55");
addOption(document.drop_list.age,"55to200", "+55");
}

if(document.drop_list.category.value == 'tieners' ){
addOption(document.drop_list.age,"12to17", "Alle", "");
addOption(document.drop_list.age,"12to14", "12 tot 14");
addOption(document.drop_list.age,"14to17", "14 tot 17");
}

if(document.drop_list.category.value == 'kinderen' ){
addOption(document.drop_list.age,"0to11", "Alle", "");
addOption(document.drop_list.age,"0to5", "0 tot 5");
addOption(document.drop_list.age,"6to8", "6 tot 8");
addOption(document.drop_list.age,"9to11", "9 tot 11");
}

if(document.drop_list.category.value == 'special'){
addOption(document.drop_list.age,"0to200", "Alle", "");
}

if(document.drop_list.category.value == 'colourfull'){
addOption(document.drop_list.age,"0to200", "Alle", "");
addOption(document.drop_list.age,"0to5", "0 tot 5");
addOption(document.drop_list.age,"6to8", "6 tot 8");
addOption(document.drop_list.age,"9to11", "9 tot 11");
addOption(document.drop_list.age,"12to14", "12 tot 14");
addOption(document.drop_list.age,"14to17", "14 tot 17");
addOption(document.drop_list.age,"18to25", "18 tot 25");
addOption(document.drop_list.age,"26to35", "26 tot 35");
addOption(document.drop_list.age,"36to55", "36 tot 55");
addOption(document.drop_list.age,"55to200", "+55");
}

}
////////////////// 

function removeAllOptions(selectbox)
{
	var i;
	for(i=selectbox.options.length-1;i>=0;i--)
	{
		//selectbox.options.remove(i);
		selectbox.remove(i);
	}
}


function addOption(selectbox, value, text )
{
	var optn = document.createElement("OPTION");
	optn.text = text;
	optn.value = value;

	selectbox.options.add(optn);
}

