function checkSearch(term){
var arrStop = [],
check = '';
$.each(arrStop,function(index,value){
if(term == value){
document.getElementById('stop').reset();
//console.log(term+'=='+value);
check = false;
return check;
}
});
}