$(document).ready(function(){
   $("select.frontpull_hoofd").append('<option value="0">Collectie</option>');
   $("select.frontpull_sub").append("");   
   
   $.get("/php/ajax/hoofdgroepen.php", {}, function(sReturn) {
      $("select.frontpull_hoofd").append(sReturn);
      $("select.frontpull_hoofd").val("0");
   });
   
   $("select.frontpull_hoofd").change(function() {
      var iSubgroep = $("select.frontpull_hoofd").val();
      $("select.frontpull_sub").empty();

      $.get("/php/ajax/subgroepen.php", {id: iSubgroep}, function(sReturn) {
         $("select.frontpull_sub").append('<option value="0">Artikelgroep</option>');
         $("select.frontpull_sub").append(sReturn);
         $("select.frontpull_sub").val("0");
      });      
   });
   
   $("select.frontpull_sub").change(function() {
      window.location = $("select.frontpull_sub").val();     
   });   
});