﻿function semHandler(referenceId) {
    var selectBox = document.getElementById(referenceId);
    if(selectBox.value != '')
        addToCart(selectBox.value, 1);
    window.location.href = '#top';
}

