public static string AjaxItemsApplyToSel(string AssessedFreight, string assessedInsurance, string ValuationMethod, string TransID, string itemID, string DeclaredUnitFOB, string AssessedUnitFOB, string ValuationNotes)
        {
            Valuation Val = new Valuation();
            if (Val.SaveValuationItemsApplyToSel(AssessedFreight, assessedInsurance, ValuationMethod, TransID, itemID, DeclaredUnitFOB, AssessedUnitFOB, ValuationNotes)) { /*Val.errorMessage += "Saved";*/ } else { Val.errorMessage += "Error"; }

            return Val.errorMessage;
        }