function checkCustomers(customerBox){
    var count = 0;
    for (var i=0; i < customerBox.length; i++) {

        if (customerBox[i].selected){
            count++;
        }
    }
    if (count == 0){
        customerBox[0].selected = true;
    }
}