html list for company types
January 10, 2008
Always on the lookout for code snippets, I needed a dropdown list for different company types (in the US). Believe it or not, I couldn’t find what I was looking for. So I just put together my own… I’m not sure if this is a completely comprehensive list. Let me know if there’s something else that needs to be added:
<select name='company_type'> <option value='Corporation'>Corporation</option> <option value='Joint Venture'>Joint Venture</option> <option value='Limited Liability Corporation (LLC)'>Limited Liability Corporation (LLC)</option> <option value='Limited Liability Partnership (LLP)'>Limited Liability Partnership (LLP)</option> <option value='Partnership'>Partnership</option> <option value='Sole Proprietorship'>Sole Proprietorship</option> <option value='Other'>Other</option> </select>