function copyValue(el) {
  document.getElementById('copy_' + el.id).innerHTML = el.value;
}

function formReset() {
document.getElementById("cart_quantity").reset();
window.location.reload();
}