Yardımlarınız için çok teşekkür ederim.
<script>
$(function(){
$("#fiyat-select option").hide();
$("#urun-select").change(function(){
$("#fiyat-select option").hide();
var slug = $("#urun-select option:selected").attr("slug");
if(slug){
$("#fiyat-select option[urun-slug='"+slug+"']").show();
}
});
});
</script>