Biraz uğraştırdı ama mükemmel çalıştığına emin olabilirsin

(function () {
var beforeText;
$("select").on('focus', function () {
beforeSText=$(this).children("option:selected").te xt();
}).change(function() {
var aktifSind = $( "select" ).index( this );
var aktifSText=$(this).children("option:selected").tex t();
$("select").each(function(i) {
if (i>aktifSind)
$( this ).children("option").each(function() {
if($( this ).text()==aktifSText)
$( this ).attr('disabled', true);
else if($( this ).text()==beforeSText)
$( this ).attr('disabled', false);
});
});
});

})();

--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 01:10:46 -->-> Daha önceki mesaj 01:06:22 --

var beforeText; gereksiz silinebilir.