<?php
$Behavior.marketplaceAdd = function()
{
$('.js_mp_category_list').change(function()
{
var iParentId = parseInt(this.id.replace('js_mp_id_', ''));
$('.js_mp_category_list').each(function()
{
if (parseInt(this.id.replace('js_mp_id_', '')) > iParentId)
{
$('#js_mp_holder_' + this.id.replace('js_mp_id_', '')).hide();
this.value = '';
}
});
$('#js_mp_holder_' + $(this).val()).show();
});
}
?>