ok, heres the latest fix. It fixes the problem when no one has the style selected, you cannot change to that style..
Change this line
$allstyles=$DB_site->query("SELECT style.title, user.styleid, count(*) AS count FROM style LEFT JOIN user USING (styleid) WHERE style.userselect=1 GROUP BY user.styleid");
To
$allstyles=$DB_site->query("SELECT style.title, style.styleid, count(*) AS count FROM style LEFT JOIN user USING (styleid) WHERE style.userselect=1 GROUP BY user.styleid");
Hope it helps out..