```
Vehicle Loan EMI Calculator
```
This script creates a form that asks the user for the loan amount, interest rate, and loan tenure in months. When the user clicks the "Calculate EMI" button, the script calculates the monthly EMI and total payment using the formula for loan EMI calculation. The results are displayed in an HTML element with the ID "result". The script uses the toFixed() method to round the results to 2 decimal places.
