﻿function CheckSunLifeDental() { 
    var claricaDental = document.getElementById('claricaDental');
        
    // check to see if Dental is not checked, if so check to see if
    //   basic plan selected (must come with dental). If so display message,
    //   and set Dental to checked
    if (claricaDental.checked == false){
        if(document.Form1.claricaPlan[0].checked){
            alert('You have selected the Basic plan, which always comes with dental.');
            claricaDental.checked = true;
            }   
    }      
        
}