This is not a valid construction:
if (this.getField("SubBrand").value == "Adventure" || "Liquid" || "Silver")
You need to use something like this:
var subBrand = this.getField("SubBrand").value;
if (subBrand == "Adventure" || subBrand == "Liquid" || subBrand == "Silver")