function check_search_scripts() {
if ( is_page_template('search.php') ) {
wp_register_script( 'searchformdate', get_template_directory_uri() . '/js/searchformdate.js', array('jquery'),'1.0.0',true );
wp_enqueue_script( 'searchformdate' );
}
}
add_action('init', 'check_search_scripts');