$(document).ready(function(){



	$('#vendor').submit(function(){
		

		if($('#agency').val() == ''){
			alert('You have missed to fill in your agency.')
			return false;
		}
		if($('#contact').val() == ''){
			alert('You have missed to fill in your contact.')
			return false;
		}
		
		
		if($('#email').val() == ''){
			alert('You have missed to fill in your email.')
			return false;
		}
		return true;
		
	});
















});