$("#ks_input").bind("input propertychange",function(event){
        	       var val = $(this).val();
        	       console.log(val);
        	       if(val == ""){
        	    	   $("#form-group .radio-inline").children('').css('color','');
        	       }else{
        	    	   $("#form-group .radio-inline").each(function(){
            	    	   var that = $(this);
            	    	  	if($(this).attr('nametag').indexOf(val) >= 0){
            	    	  		that.children('').css('color','red');
            	    	  	}else{
            	    	  		 that.children('').css('color','');
            	    	  	}
            	       });
        	       }
});

