Add an id to the second select box then use javascript to hide the second box based on the first choice.
var $text = $( "#selectbox1 option:selected" ).text(); //selected option from first box
if $text = 'knipkaart' $( "#selectbox2).hide(); //hide the box
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community