// JavaScript Document

  $(document).ready(function() {
      $("#selectbox_1").change(function(){
        var id_size=$(this).children('option:selected').val();
		$("#selectbox_2").removeAttr('disabled');
        $("#selectbox_2").load("js/selectboxen.php",{value: id_size});
      });
	  
      $("#selectbox_2").change(function(){
        var id_sico=$(this).children('option:selected').val();
        $("#anzahlProd").load("js/anzahlprod.php",{value: id_sico});
      });
  });
  
