function submitHousingAssocLookup(thisfield)
{
	var placename;
	if ((thisfield.form.localauthority.value == -1) && (thisfield.form.county.value == -1))
	{
		return;
	}

	if (thisfield.name == 'county')
	{
		thisfield.form.localauthority.value = -1;
		placename = thisfield.form.county.value;
	}
	else
	{
		thisfield.form.county.value = -1;
		placename = thisfield.form.localauthority.value;		
	}

	thisfield.form.action = 'http://www.sharetobuy.com/sharedownership/in/' + placename;

	thisfield.form.submit();
}

