How to Hide the "FB Lightbox Settings" Admin Menu

function plt_hide_advanced_facebook_page_promoter_lighbox_menus() {
	//Hide the "Settings → FB Lightbox Settings" menu.
	remove_submenu_page('options-general.php', 'it_afbppl_settings');
}

add_action('admin_menu', 'plt_hide_advanced_facebook_page_promoter_lighbox_menus', 11);

Where do I put this code?