searchForm.find('input[type="checkbox"]').click(function (evt) {
if(evt.target.checked === true){
searchForm.find('input[type="checkbox"]').each(function () {
if(this.value !== evt.target.value){
this.checked = false;
}
});
//TODO: sth.
}
});

