hmm, i just noticed something. you have 'Pre-School' in your where argument. mysql may not like the '-' in there. try doing this:
$sqlsel = "
SELECT
*
FROM
times
WHERE
day = '". $day ."'
AND
group = '". str_replace('-', '\-', $group) ."'
AND
start = '". $start ."'
";