I am making a page where users can answer questions (using radio buttons) about a product they are selling back. When they hit a button at the bottom of the page, a price quote
You should reference the element, and set its content instead of using document.write.
document.write
Display Quote
function getQuote(){ this.firstChild.data = "Your Quote Is: $" + price + ".00"; }
If you want to write to a different element, you should select that element, and likely use the same technique.