<input id="element" type="checkbox" onclick="show_hide('hidden')" >
<br>
<script type="text/javascript">
function show_hide(value)
{
if(value=='hidden'){
document.body.appendChild(document.createTextNode('Привет Мир!'));
document.getElementById('element').onclick = function(){show_hide('visible')};
}else{
document.body.appendChild(document.createTextNode('Пока!'));
document.getElementById('element').onclick = function(){show_hide('hidden')};
}
}
</script>