// JavaScript Document
	function validate()
	{
		if(document.fynd.Category.value=="")
		{
			alert("Please select a category");
			document.fynd.Category.focus();
			return false;
		}
		if(document.fynd.SubCategory.value=="")
		{
			alert("Please select a sub category");
			document.fynd.SubCategory.focus();
			return false;
		}
		/*if(document.fynd.ResidingState.value=="")
		{
			alert("Please Select the State");
			document.fynd.ResidingState.focus();
			return false;
		}
		if(document.fynd.City.value=="")
		{
			alert("Please Select the City");
			document.fynd.City.focus();
			return false;
		}*/
		
		document.fynd.submit();
	}

function catvalue()
{
	document.fynd.catval.value= document.fynd.Category[document.fynd.Category.selectedIndex].text
}
