Hi DesignCityStudio:
I dont really get what you trying to do, corret me if I am wrong.
If you mean that you want to run some code when the user click to selected the check box or unselect the check box then you dont need your event listener, below the code already replace what your event listener is doing, your magcheck.addEventListener("click", magListener) is to detect if the user click on the checkbox now the code below it is acting as your eventlistener to detect the click on the check box.
mvc.onPress = function () {
// any code here mean if the user click the check box
// if you want to run some validation code etc when the check box is click no matter is selected or not then put your code here
if (mvc.magcheck.selected){
mvc.magcheck.selected = false;// <--- this mean the user unselect the check box
// if check box is unselected then do your unselected code here
}else{
mvc.magcheck.selected = true;// <--- this mean the user select the check box
// if check box is selected then do your selected code here
}
};