function resetClientSearchForm() {
    
    $('#keyword').val('');
    $('#andOr').val('or');

    unCheckPref(0, 46);

    $("input[@type=checkbox][@checked]").each(function(){
        $(this).removeAttr('checked');
    });

    $('#restrictSex1').removeAttr('checked');
    $('#restrictSex2').removeAttr('checked');

    $('#workerCategory1').removeAttr('checked');
    $('#workerCategory2').removeAttr('checked');

    $('#requiredScoreData').removeAttr('checked');
    $('#requiredUrl').removeAttr('checked');
}

