= '$(\'#field_type\').change(function () {
var $selected = $(this).val();
if ($selected == "E" ) $(\'#custom_plg\').show();
else { $(\'#custom_plg\').hide();
$(\'#custom_jplugin_id option:eq(0)\').attr("selected", "selected");
$(\'#custom_jplugin_id\').change();
}
});
$(\'#custom_jplugin_id\').change(function () {
var $id = $(this).val();
$(\'#plugin-Container\').load( \'index.php?option=com_virtuemart&view=custom&task=viewJson&format=json&custom_jplugin_id=\'+$id , function() {
$(this).find("[title]").vm2admin(\'tips\',tip_image) });
});
}); '