function runThrough(amount)
{
	var tamount = parseInt(amount);
	var selBox = '<br /><br /><br />';
	
	for(j = 0;j < tamount;j++)
	{
		selBox = selBox + '<label style="width: 150px; font-weight: none; text-align: left; margin-bottom: 2px; margin-top: 10px;">#' + (j+1) + ' Name of guest:</label><input type="text" style=" margin-bottom: 2px; margin-top: 10px;" name="guest_name_'+ (j+1) +'" /><br /><label style="width: 150px; font-weight: none; text-align: left;">#' + (j+1) + ' Company of guest:</label><input type="text" name="guest_company_' + (j+1) +'" /><br/>';
	}
	
	selBox = selBox + '<input type=\'hidden\' name=\'total_guests\' id=\'total_guests\' value=\'' + j + '\' />';
	
	if(j > 0)
	{
		selBox = selBox + '<br /><p>If you would like to register more than 10 persons for your visit, please contact Beatrice Sibaja in our office.</p><p><label>Email:</label> <a href="mailto:b.sibaja@fidesnorthamerica.com">b.sibaja@fidesnorthamerica.com</a><br /><label>Phone:</label> 805 525-7125 x 103</p>';
	}
	
	document.getElementById('guestNames').innerHTML = selBox;
}