$(document).ready(function()
  {
    $('#projektor_gyarto option:first').attr('selected', 'selected');

   $('#projektor_gyarto').change(function()
    {
      if (this.value == 'null') {
        $('#projektor_tipus').attr("disabled", "disabled");
        $('#projektor_tipus').html('<option>-- Nincs --</option>');
      } else {       
        $('#projektor_tipus').load(
          $(this).parents('form').attr('action'),
          {
            projektor_gyarto: this.value
          },
          function() {
            $('#loader').hide();
          }
          );
        $('#projektor_tipus').attr("disabled", "");
      }
    });

    $('#projektor_tipus').change(function()
    {
      if (this.value != 'null') {
        window.location.replace(this.value);
      }
    });
  });