<link rel="stylesheet" href="a.css" id="css">
<input type=checkbox onclick="GetCSS(this)">
<script>
function GetCSS(o)
{
 if(o.checked)
 document.getElementById("css").href="b.css"
 else
 document.getElementById("css").href="a.css"
}
</script>a.css
===========
body{
background:red
}b.css
==========
body{
background:blue
}