function clearBrowseItems(a){$(a).html("<option>[Select a browse item]</option>")}function changeCategoryFunction(d,b,a){var c=function(){clearBrowseItems(a);$.ajax({type:"POST",url:"/WebServices/BrowseItemsService.asmx/GetDropDownContents",data:"{'knownCategoryValues':'"+$(b).val()+"', 'category':'"+d+"'}",contentType:"application/json; charset=utf-8",dataType:"json",success:function(c){var b=$(a)[0];$(a).removeAttr("disabled");$.each(c.d,function(c,a){b.options[b.length]=new Option(a.name,a.value)})}})};return c}function changeItemFunction(a){var b=function(){var b=$(a)[0],c=b.options[b.selectedIndex].value;$("#hdSelectedItem").val(c)};return b}