function addAccessories(obj, price) {
    if(obj.checked == true) {
      document.getElementById('priceWithWat').value = parseInt(document.getElementById('priceWithWat').value) + price;
      document.getElementById('priceWithoutWat').value = Math.round(parseInt(document.getElementById('priceWithWat').value) / 1.2);
      
      document.getElementById('priceWithWatShow').value = priceFormat(document.getElementById('priceWithWat').value);
      document.getElementById('priceWithoutWatShow').value = priceFormat(document.getElementById('priceWithoutWat').value);
      
    } else {
      document.getElementById('priceWithWat').value = parseInt(document.getElementById('priceWithWat').value) - price;
      document.getElementById('priceWithoutWat').value = Math.round(parseInt(document.getElementById('priceWithWat').value) / 1.2);
      
      document.getElementById('priceWithWatShow').value = priceFormat(document.getElementById('priceWithWat').value);
      document.getElementById('priceWithoutWatShow').value = priceFormat(document.getElementById('priceWithoutWat').value);
    } 
}
