Forums Index > Mewsoft Products > Auctionawy > sales tax on listing form....
smokyant2000 First Post Posted on: 03-29-12 06:23 PM
sales tax on listing form....

hello and great day. i was wondering how to get a drop down menue with the states in the sales tax area. it is just checkable and i cant charge tax in new yourk but need to in idaho. how might i fix this? please and thank you.
mewsoft Reply #: 1 Posted on: 03-30-12 10:58 AM
Re: sales tax on listing form....

Replace the sales tax class in the sell template:

Code: HTML
<input type="text" name="SalesTax" size="10" value="<!--SalesTax-->" onkeyup="FilterDecimal(this);" onBlur="CheckNumeric(this.value, this);">


by code like this:
Code: HTML
  <select size="1" name="SalesTax">
    <option value="">New York</option>
    <option selected value="10">Idaho</option>
  </select>



You can add any number of states to the list and set each state value.

Mewsoft Support
www.mewsoft.com