$$('.vlozka-box').addEvent('click', function(){
  this.getParent('.parent').getElements('.vlozka-box').addClass('disabled');
  this.getParent('.parent').getElements('.vlozka-box label').removeClass('active');
  this.removeClass('disabled');
  this.getElement('label').addClass('active');
  this.getElement('input').setProperty('checked', 'checked');
  najdivlozku();
});

najdivlozku = function() {
  get = $$('input:checked').getProperty('value');
  
  if (get.length !== 2) {
    return;
  }
  
  $$('.produkty .p').addClass('hdn');
  $$('.produkty .p.chodilo_'+get[0]+'-noha_'+get[1]).removeClass('hdn');
};
