/*
Creating a multiselect dropdown
*/
jQuery(window).load(function() {
/*
jQuery("#ta_titles").bind("change",function(){
if(jQuery('#ta_titles').val()!="c")
jQuery('#custom').hide();
else
jQuery('#custom').show();
}
);
*/
//jQuery('#custom').hide();
//jQuery('.ui-multiselect').hide();
/*
if(jQuery('#ta_titles').val()=="c")
jQuery('#custom').show();
else
jQuery('#custom').hide();
*/
}
);