The following is just a reminder. This is the jQuery way to manipulate content items, but bigger jobs usually call for something like iMacros.
jQuery('input').each(function() { if ( jQuery(this).attr('type') == "checkbox" && jQuery(this).parent().text().match(/Localized/) ){ this.checked = true; } });(console)

