You need to register jquery bore plugin script.js file runs.
Open the plugin file norman-adv-archive.php and go to line number 266. Then add the following line
wp_enqueue_script(‘jquery’);
So the final function would be like like
function NormanArchiveWidget_script() {
$plugin_url = plugins_url ( plugin_basename ( dirname ( __FILE__ ) ) );
wp_register_script( 'SZArchiveWidget_script', $plugin_url.'/script.js');
wp_enqueue_script('jquery');
wp_enqueue_script( 'SZArchiveWidget_script');
}