$(document).ready(function() {
$('input[type="checkbox"]').click(function() {
if($(this).attr('id') == 'watch') {
if (this.checked) {
$('#switch_seo').show();
} else {
$('#switch_seo').hide();
}
}
});
});