How to Hide the "GVSoft jCarouselLite" Admin Menu

function plt_hide_gvs_jcarousellite_menus() {
	//Hide the "Settings → GVSoft jCarouselLite" menu.
	remove_submenu_page('options-general.php', 'GVSjCarouselLite');
}

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

Where do I put this code?