在选择标签中添加一个属性 id="tour_category" 并尝试
$(document).ready( function(){
var a = new Array();
$("#tour_category").children("option").each(function(x){
test = false;
b = a[x] = $(this).val();
for (i=0;i<a.length-1;i++){
if (b ==a[i]) {
test =true;
}
}
if (test) {
$(this).remove();
}
})
});
MYYA